OSDN Git Service

Merge remote-tracking branch 'x86/pie-x86' into q-x86
[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/system.sfs ]; then
99                 mount -o loop,noatime /mnt/$SRC/system.sfs android
100                 if [ -e android/system.img ]; then
101                         mount --move android /sfs
102                         mount -o loop,noatime /sfs/system.img android
103                 fi
104         elif [ -e /mnt/$SRC/system.img ]; then
105                 remount_rw
106                 mount -o loop,noatime /mnt/$SRC/system.img android
107         elif [ -s /mnt/$SRC/system/default.prop ]; then
108                 remount_rw
109                 mount --bind /mnt/$SRC/system android
110         elif [ -z "$SRC" -a -s /mnt/default.prop ]; then
111                 mount --bind /mnt android
112         else
113                 return 1
114         fi
115         echo " found at $1"
116         rm /sbin/mke2fs
117         hash -r
118 }
119
120 remount_rw()
121 {
122         # "foo" as mount source is given to workaround a Busybox bug with NFS
123         # - as it's ignored anyways it shouldn't harm for other filesystems.
124         mount -o remount,rw foo /mnt
125 }
126
127 debug_shell()
128 {
129         if [ -x system/bin/sh ]; then
130                 echo Running MirBSD Korn Shell...
131                 USER="($1)" system/bin/sh -l 2>&1
132                 [ $? -ne 0 ] && /bin/sh 2>&1
133         else
134                 echo Running busybox ash...
135                 busybox sh 2>&1
136         fi
137 }
138
139 echo -n Detecting Android-x86...
140
141 [ -z "$SRC" -a -n "$BOOT_IMAGE" ] && SRC=`dirname $BOOT_IMAGE`
142
143 for c in `cat /proc/cmdline`; do
144         case $c in
145                 iso-scan/filename=*)
146                         SRC=iso
147                         eval `echo $c | cut -b1-3,18-`
148                         ;;
149                 *)
150                         ;;
151         esac
152 done
153
154 cd /
155 while :; do
156         for device in ${ROOT:-/dev/[hmnsvx][dmrv][0-9a-z]*}; do
157                 check_root $device && break 2
158                 mountpoint -q /mnt && umount /mnt
159         done
160         sleep 1
161         echo -n .
162 done
163 cd /android
164
165 ln -s mnt/$SRC /src
166 ln -s android/system /
167 ln -s ../system/lib/firmware ../system/lib/modules /lib
168
169 if [ -d system/apex/com.android.runtime.debug ]; then
170         ln -s ../android/system/apex/com.android.runtime.debug /apex/com.android.runtime
171 else
172         ln -s ../android/system/apex/com.android.runtime.release /apex/com.android.runtime
173 fi
174
175 if [ -n "$INSTALL" ]; then
176         zcat /src/install.img | ( cd /; cpio -iud > /dev/null )
177 fi
178
179 # load scripts
180 for s in `ls /scripts/* /src/scripts/*`; do
181         test -e "$s" && source $s
182 done
183
184 # ensure keyboard driver is loaded
185 if [ -n "$INSTALL" -o -n "$DEBUG" ]; then
186         busybox modprobe -a atkbd hid-apple
187         auto_detect &
188 fi
189
190 if [ 0$DEBUG -gt 0 ]; then
191         echo -e "\nType 'exit' to continue booting...\n"
192         debug_shell debug-found
193 fi
194
195 # A target should provide its detect_hardware function.
196 # On success, return 0 with the following values set.
197 # return 1 if it wants to use auto_detect
198 [ "$AUTO" != "1" ] && detect_hardware && FOUND=1
199
200 [ -n "$INSTALL" ] && do_install
201
202 load_modules
203 mount_data
204 mount_sdcard
205 setup_tslib
206 setup_dpi
207 post_detect
208
209 if [ 0$DEBUG -gt 1 ]; then
210         echo -e "\nUse Alt-F1/F2/F3 to switch between virtual consoles"
211         echo -e "Type 'exit' to enter Android...\n"
212
213         debug_shell debug-late
214 fi
215
216 [ -n "$DEBUG" ] && SWITCH=${SWITCH:-chroot}
217
218 # We must disable mdev before switching to Android
219 # since it conflicts with Android's init
220 echo > /proc/sys/kernel/hotplug
221
222 export ANDROID_ROOT=/system
223
224 exec ${SWITCH:-switch_root} /android /init
225
226 # avoid kernel panic
227 while :; do
228         echo
229         echo '  Android-x86 console shell. Use only in emergencies.'
230         echo
231         debug_shell fatal-err
232 done