OSDN Git Service

initrd: re-enable android executables for lollipop-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 # Last updated 2014/01/15
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 $@ || 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 && [ -e /mnt/$SRC/ramdisk.img ]
82         [ $? -ne 0 ] && return 1
83         zcat /mnt/$SRC/ramdisk.img | cpio -id > /dev/null
84         if [ -e /mnt/$SRC/system.sfs ]; then
85                 mount -o loop /mnt/$SRC/system.sfs /sfs
86                 mount -o loop /sfs/system.img system
87         elif [ -e /mnt/$SRC/system.img ]; then
88                 remount_rw
89                 mount -o loop /mnt/$SRC/system.img system
90         elif [ -d /mnt/$SRC/system ]; then
91                 remount_rw
92                 mount --bind /mnt/$SRC/system system
93         else
94                 rm -rf *
95                 return 1
96         fi
97         mkdir cache mnt
98         mount -t tmpfs tmpfs cache
99         echo " found at $1"
100 }
101
102 remount_rw()
103 {
104         # "foo" as mount source is given to workaround a Busybox bug with NFS
105         # - as it's ignored anyways it shouldn't harm for other filesystems.
106         mount -o remount,rw foo /mnt
107 }
108
109 debug_shell()
110 {
111         if which mksh >/dev/null 2>&1; then
112                 echo Running MirBSD Korn Shell...
113                 USER="($1)" mksh -l 2>&1
114         else
115                 echo Running busybox ash...
116                 sh 2>&1
117         fi
118 }
119
120 echo -n Detecting Android-x86...
121
122 [ -z "$SRC" -a -n "$BOOT_IMAGE" ] && SRC=`dirname $BOOT_IMAGE`
123
124 mount -t tmpfs tmpfs /android
125 cd /android
126 while :; do
127         for device in ${ROOT:-/dev/[hmsv][dmr][0-9a-z]*}; do
128                 check_root $device && break 2
129                 mountpoint -q /mnt && umount /mnt
130         done
131         sleep 1
132         echo -n .
133 done
134
135 ln -s mnt/$SRC /src
136 ln -s android/system /
137 ln -s ../system/lib/modules /lib
138 ln -s ../system/lib/firmware /lib
139
140 if [ -n "$INSTALL" ]; then
141         cd /
142         zcat /src/install.img | cpio -iud > /dev/null
143 fi
144
145 if [ -x system/bin/ln -a \( -n "$DEBUG" -o -n "$BUSYBOX" \) ]; then
146         mv /bin /lib .
147         system/bin/ln -s android/lib /lib
148         system/bin/ln -s android/bin /bin
149         sed -i 's|\(PATH *\)\(/sbin\)|\1/bin:\2|' init.rc
150         mv /sbin/* sbin
151         rmdir /sbin
152         ln -s android/sbin /
153 fi
154
155 # ensure keyboard driver is loaded
156 [ -n "$INSTALL" -o -n "$DEBUG" ] && modprobe atkbd
157
158 if [ 0$DEBUG -gt 0 ]; then
159         echo -e "\nType 'exit' to continue booting...\n"
160         debug_shell debug-found
161 fi
162
163 # load scripts
164 for s in `ls /scripts/* /src/scripts/*`; do
165         test -e "$s" && source $s
166 done
167
168 # A target should provide its detect_hardware function.
169 # On success, return 0 with the following values set.
170 # return 1 if it wants to use auto_detect
171 [ "$AUTO" != "1" ] && detect_hardware && FOUND=1
172
173 [ -n "$INSTALL" ] && do_install
174
175 load_modules
176 mount_data
177 mount_sdcard
178 setup_tslib
179 setup_dpi
180 post_detect
181 find_network_dev_name
182
183 if [ 0$DEBUG -gt 1 ]; then
184         echo -e "\nUse Alt-F1/F2/F3 to switch between virtual consoles"
185         echo -e "Type 'exit' to enter Android...\n"
186
187         debug_shell debug-late
188 fi
189
190 [ -n "$DEBUG" ] && SWITCH=${SWITCH:-chroot}
191
192 # We must disable mdev before switching to Android
193 # since it conflicts with Android's init
194 echo > /proc/sys/kernel/hotplug
195
196 exec ${SWITCH:-switch_root} /android /init
197
198 # avoid kernel panic
199 while :; do
200         echo
201         echo '  Android-x86 console shell. Use only in emergencies.'
202         echo
203         debug_shell fatal-err
204 done