OSDN Git Service

init: do not keep initrd's busybox in debug mode
[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         else
139                 echo Running busybox ash...
140                 sh 2>&1
141         fi
142 }
143
144 echo -n Detecting Android-x86...
145
146 [ -z "$SRC" -a -n "$BOOT_IMAGE" ] && SRC=`dirname $BOOT_IMAGE`
147 [ -z "$RAMDISK" ] && RAMDISK=ramdisk.img || RAMDISK=${RAMDISK##/dev/}
148
149 for c in `cat /proc/cmdline`; do
150         case $c in
151                 iso-scan/filename=*)
152                         SRC=iso
153                         eval `echo $c | cut -b1-3,18-`
154                         ;;
155                 *)
156                         ;;
157         esac
158 done
159
160 mount -t tmpfs tmpfs /android
161 cd /android
162 while :; do
163         for device in ${ROOT:-/dev/[hmnsv][dmrv][0-9a-z]*}; do
164                 check_root $device && break 2
165                 mountpoint -q /mnt && umount /mnt
166         done
167         sleep 1
168         echo -n .
169 done
170
171 ln -s mnt/$SRC /src
172 ln -s android/system /
173 ln -s ../system/lib/firmware ../system/lib/modules /lib
174
175 if [ -n "$INSTALL" ]; then
176         zcat /src/install.img | ( cd /; cpio -iud > /dev/null )
177 fi
178
179 if [ -x system/bin/ln -a -n "$BUSYBOX" ]; then
180         mv -f /bin /lib .
181         sed -i 's|\( PATH.*\)|\1:/bin|' init.environ.rc
182         rm /sbin/modprobe
183         busybox mv /sbin/* sbin
184         rmdir /sbin
185         ln -s android/bin android/lib android/sbin /
186         hash -r
187 fi
188
189 # load scripts
190 for s in `ls /scripts/* /src/scripts/*`; do
191         test -e "$s" && source $s
192 done
193
194 # ensure keyboard driver is loaded
195 if [ -n "$INSTALL" -o -n "$DEBUG" ]; then
196         busybox modprobe -a atkbd hid-apple
197         auto_detect &
198 fi
199
200 if [ 0$DEBUG -gt 0 ]; then
201         echo -e "\nType 'exit' to continue booting...\n"
202         debug_shell debug-found
203 fi
204
205 # A target should provide its detect_hardware function.
206 # On success, return 0 with the following values set.
207 # return 1 if it wants to use auto_detect
208 [ "$AUTO" != "1" ] && detect_hardware && FOUND=1
209
210 [ -n "$INSTALL" ] && do_install
211
212 load_modules
213 mount_data
214 mount_sdcard
215 setup_tslib
216 setup_dpi
217 post_detect
218
219 if [ 0$DEBUG -gt 1 ]; then
220         echo -e "\nUse Alt-F1/F2/F3 to switch between virtual consoles"
221         echo -e "Type 'exit' to enter Android...\n"
222
223         debug_shell debug-late
224         SETUPWIZARD=${SETUPWIZARD:-0}
225 fi
226
227 [ "$SETUPWIZARD" = "0" ] && echo "ro.setupwizard.mode=DISABLED" >> default.prop
228
229 [ -n "$DEBUG" ] && SWITCH=${SWITCH:-chroot}
230
231 # We must disable mdev before switching to Android
232 # since it conflicts with Android's init
233 echo > /proc/sys/kernel/hotplug
234
235 export ANDROID_ROOT=/system
236
237 exec ${SWITCH:-switch_root} /android /init
238
239 # avoid kernel panic
240 while :; do
241         echo
242         echo '  Android-x86 console shell. Use only in emergencies.'
243         echo
244         debug_shell fatal-err
245 done