OSDN Git Service

init: fix localtime_r not work in /init
[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 2015/10/23
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 || 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.img ]; then
88                 return 1
89         fi
90         zcat /mnt/$SRC/ramdisk.img | cpio -id > /dev/null
91         if [ -e /mnt/$SRC/system.sfs ]; then
92                 mount -o loop /mnt/$SRC/system.sfs /sfs
93                 mount -o loop /sfs/system.img system
94         elif [ -e /mnt/$SRC/system.img ]; then
95                 remount_rw
96                 mount -o loop /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 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
132 for c in `cat /proc/cmdline`; do
133         case $c in
134                 iso-scan/filename=*)
135                         eval `echo $c | cut -b1-3,18-`
136                         ;;
137                 *)
138                         ;;
139         esac
140 done
141
142 mount -t tmpfs tmpfs /android
143 cd /android
144 while :; do
145         for device in ${ROOT:-/dev/[hmsv][dmr][0-9a-z]*}; do
146                 check_root $device && break 2
147                 mountpoint -q /mnt && umount /mnt
148         done
149         sleep 1
150         echo -n .
151 done
152
153 ln -s mnt/$SRC /src
154 ln -s android/system /
155 ln -s ../system/lib/firmware ../system/lib/modules /lib
156
157 if [ -n "$INSTALL" ]; then
158         zcat /src/install.img | ( cd /; cpio -iud > /dev/null )
159 fi
160
161 if [ -x system/bin/ln -a \( -n "$DEBUG" -o -n "$BUSYBOX" \) ]; then
162         mv /bin /lib .
163         sed -i 's|\( PATH.*\)|\1:/bin|' init.environ.rc
164         rm /sbin/modprobe
165         busybox mv /sbin/* sbin
166         rmdir /sbin
167         ln -s android/bin android/lib android/sbin /
168         hash -r
169 fi
170
171 # ensure keyboard driver is loaded
172 [ -n "$INSTALL" -o -n "$DEBUG" ] && busybox modprobe -a atkbd hid-apple
173
174 if [ 0$DEBUG -gt 0 ]; then
175         echo -e "\nType 'exit' to continue booting...\n"
176         debug_shell debug-found
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 # A target should provide its detect_hardware function.
185 # On success, return 0 with the following values set.
186 # return 1 if it wants to use auto_detect
187 [ "$AUTO" != "1" ] && detect_hardware && FOUND=1
188
189 [ -n "$INSTALL" ] && do_install
190
191 load_modules
192 mount_data
193 mount_sdcard
194 setup_tslib
195 setup_dpi
196 post_detect
197
198 if [ 0$DEBUG -gt 1 ]; then
199         echo -e "\nUse Alt-F1/F2/F3 to switch between virtual consoles"
200         echo -e "Type 'exit' to enter Android...\n"
201
202         debug_shell debug-late
203 fi
204
205 [ -n "$DEBUG" ] && SWITCH=${SWITCH:-chroot}
206
207 # We must disable mdev before switching to Android
208 # since it conflicts with Android's init
209 echo > /proc/sys/kernel/hotplug
210
211 export ANDROID_ROOT=/system
212
213 exec ${SWITCH:-switch_root} /android /init
214
215 # avoid kernel panic
216 while :; do
217         echo
218         echo '  Android-x86 console shell. Use only in emergencies.'
219         echo
220         debug_shell fatal-err
221 done