OSDN Git Service

init: support Xen hypervisor device
[android-x86/bootable-newinstaller.git] / initrd / init
1 #!/bin/busybox sh
2 #
3 # By Chih-Wei Huang <cwhuang@linux.org.tw>
4 # and Thorsten Glaser <tg@mirbsd.org>
5 #
6 # License: GNU Public License
7 # We explicitely grant the right to use the scripts
8 # with Android-x86 project.
9 #
10
11 PATH=/sbin:/bin:/system/bin:/system/xbin; export PATH
12
13 # auto installation
14 [ -n "$AUTO_INSTALL" ] && INSTALL=1
15
16 # configure debugging output
17 if [ -n "$DEBUG" -o -n "$INSTALL" ]; then
18         LOG=/tmp/log
19         set -x
20 else
21         LOG=/dev/null
22         test -e "$LOG" || busybox mknod $LOG c 1 3
23 fi
24 exec 2>> $LOG
25
26 # early boot
27 if test x"$HAS_CTTY" != x"Yes"; then
28         # initialise /proc and /sys
29         busybox mount -t proc proc /proc
30         busybox mount -t sysfs sys /sys
31         # let busybox install all applets as symlinks
32         busybox --install -s
33         # spawn shells on tty 2 and 3 if debug or installer
34         if test -n "$DEBUG" || test -n "$INSTALL"; then
35                 # ensure they can open a controlling tty
36                 mknod /dev/tty c 5 0
37                 # create device nodes then spawn on them
38                 mknod /dev/tty2 c 4 2 && openvt
39                 mknod /dev/tty3 c 4 3 && openvt
40         fi
41         if test -z "$DEBUG" || test -n "$INSTALL"; then
42                 echo 0 0 0 0 > /proc/sys/kernel/printk
43         fi
44         # initialise /dev (first time)
45         mkdir -p /dev/block
46         echo /sbin/mdev > /proc/sys/kernel/hotplug
47         mdev -s
48         # re-run this script with a controlling tty
49         exec env HAS_CTTY=Yes setsid cttyhack /bin/sh "$0" "$@"
50 fi
51
52 # now running under a controlling tty; debug output from stderr into log file
53 # boot up Android
54
55 error()
56 {
57         echo $*
58         return 1
59 }
60
61 try_mount()
62 {
63         RW=$1; shift
64         if [ "${ROOT#*:/}" != "$ROOT" ]; then
65                 # for NFS roots, use nolock to avoid dependency to portmapper
66                 mount -o $RW,noatime,nolock $@
67                 return $?
68         fi
69         case $(blkid $1) in
70                 *TYPE=*ntfs*)
71                         mount.ntfs-3g -o rw,force $@
72                         ;;
73                 *TYPE=*)
74                         mount -o $RW,noatime $@
75                         ;;
76                 *)
77                         return 1
78                         ;;
79         esac
80 }
81
82 check_root()
83 {
84         if [ "`dirname $1`" = "/dev" ]; then
85                 [ -e $1 ] || return 1
86                 blk=`basename $1`
87                 [ ! -e /dev/block/$blk ] && ln $1 /dev/block
88                 dev=/dev/block/$blk
89         else
90                 dev=$1
91         fi
92         try_mount ro $dev /mnt || return 1
93         if [ -n "$iso" -a -e /mnt/$iso ]; then
94                 mount --move /mnt /iso
95                 mkdir /mnt/iso
96                 mount -o loop /iso/$iso /mnt/iso
97         fi
98         if [ -e /mnt/$SRC/$RAMDISK ]; then
99                 zcat /mnt/$SRC/$RAMDISK | cpio -id > /dev/null
100         elif [ -b /dev/$RAMDISK ]; then
101                 zcat /dev/$RAMDISK | cpio -id > /dev/null
102         else
103                 return 1
104         fi
105         if [ -e /mnt/$SRC/system.sfs ]; then
106                 mount -o loop,noatime /mnt/$SRC/system.sfs /sfs
107                 mount -o loop,noatime /sfs/system.img system
108         elif [ -e /mnt/$SRC/system.img ]; then
109                 remount_rw
110                 mount -o loop,noatime /mnt/$SRC/system.img system
111         elif [ -s /mnt/$SRC/system/build.prop ]; then
112                 remount_rw
113                 mount --bind /mnt/$SRC/system system
114         elif [ -z "$SRC" -a -s /mnt/build.prop ]; then
115                 mount --bind /mnt system
116         else
117                 rm -rf *
118                 return 1
119         fi
120         mkdir -p mnt
121         echo " found at $1"
122         rm /sbin/mke2fs
123         hash -r
124 }
125
126 remount_rw()
127 {
128         # "foo" as mount source is given to workaround a Busybox bug with NFS
129         # - as it's ignored anyways it shouldn't harm for other filesystems.
130         mount -o remount,rw foo /mnt
131 }
132
133 debug_shell()
134 {
135         if [ -x system/bin/sh ]; then
136                 echo Running MirBSD Korn Shell...
137                 USER="($1)" system/bin/sh -l 2>&1
138                 [ $? -ne 0 ] && /bin/sh 2>&1
139         else
140                 echo Running busybox ash...
141                 sh 2>&1
142         fi
143 }
144
145 echo -n Detecting Android-x86...
146
147 [ -z "$SRC" -a -n "$BOOT_IMAGE" ] && SRC=`dirname $BOOT_IMAGE`
148 [ -z "$RAMDISK" ] && RAMDISK=ramdisk.img || RAMDISK=${RAMDISK##/dev/}
149
150 for c in `cat /proc/cmdline`; do
151         case $c in
152                 iso-scan/filename=*)
153                         SRC=iso
154                         eval `echo $c | cut -b1-3,18-`
155                         ;;
156                 *)
157                         ;;
158         esac
159 done
160
161 mount -t tmpfs tmpfs /android
162 cd /android
163 while :; do
164         for device in ${ROOT:-/dev/[hmnsvx][dmrv][0-9a-z]*}; do
165                 check_root $device && break 2
166                 mountpoint -q /mnt && umount /mnt
167         done
168         sleep 1
169         echo -n .
170 done
171
172 ln -s mnt/$SRC /src
173 ln -s android/system /
174 ln -s ../system/lib/firmware ../system/lib/modules /lib
175
176 if [ -n "$INSTALL" ]; then
177         zcat /src/install.img | ( cd /; cpio -iud > /dev/null )
178 fi
179
180 if [ -x system/bin/ln -a -n "$BUSYBOX" ]; then
181         mv -f /bin /lib .
182         sed -i 's|\( PATH.*\)|\1:/bin|' init.environ.rc
183         rm /sbin/modprobe
184         busybox mv /sbin/* sbin
185         rmdir /sbin
186         ln -s android/bin android/lib android/sbin /
187         hash -r
188 fi
189
190 # load scripts
191 for s in `ls /scripts/* /src/scripts/*`; do
192         test -e "$s" && source $s
193 done
194
195 # ensure keyboard driver is loaded
196 if [ -n "$INSTALL" -o -n "$DEBUG" ]; then
197         busybox modprobe -a atkbd hid-apple
198         auto_detect &
199 fi
200
201 if [ 0$DEBUG -gt 0 ]; then
202         echo -e "\nType 'exit' to continue booting...\n"
203         debug_shell debug-found
204 fi
205
206 # A target should provide its detect_hardware function.
207 # On success, return 0 with the following values set.
208 # return 1 if it wants to use auto_detect
209 [ "$AUTO" != "1" ] && detect_hardware && FOUND=1
210
211 [ -n "$INSTALL" ] && do_install
212
213 load_modules
214 mount_data
215 mount_sdcard
216 setup_tslib
217 setup_dpi
218 post_detect
219
220 if [ 0$DEBUG -gt 1 ]; then
221         echo -e "\nUse Alt-F1/F2/F3 to switch between virtual consoles"
222         echo -e "Type 'exit' to enter Android...\n"
223
224         debug_shell debug-late
225         SETUPWIZARD=${SETUPWIZARD:-0}
226 fi
227
228 [ "$SETUPWIZARD" = "0" ] && echo "ro.setupwizard.mode=DISABLED" >> default.prop
229
230 [ -n "$DEBUG" ] && SWITCH=${SWITCH:-chroot}
231
232 # We must disable mdev before switching to Android
233 # since it conflicts with Android's init
234 echo > /proc/sys/kernel/hotplug
235
236 export ANDROID_ROOT=/system
237
238 exec ${SWITCH:-switch_root} /android /init
239
240 # avoid kernel panic
241 while :; do
242         echo
243         echo '  Android-x86 console shell. Use only in emergencies.'
244         echo
245         debug_shell fatal-err
246 done