OSDN Git Service

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