Try loading phram module twice to fix loading issue.
[live-boot-grml.git] / components / 9990-main.sh
1 #!/bin/sh
2
3 # set -e
4
5 Live ()
6 {
7         if [ -x /scripts/local-top/cryptroot ]
8         then
9                 /scripts/local-top/cryptroot
10         fi
11
12         exec 6>&1
13         exec 7>&2
14         exec > boot.log
15         exec 2>&1
16         tail -f boot.log >&7 &
17         tailpid="${!}"
18
19         LIVE_BOOT_CMDLINE="${LIVE_BOOT_CMDLINE:-$(cat /proc/cmdline)}"
20         Cmdline_old
21
22         Debug
23
24         Read_only
25
26         Select_eth_device
27
28         if [ -e /conf/param.conf ]
29         then
30                 . /conf/param.conf
31         fi
32
33         # Needed here too because some things (*cough* udev *cough*)
34         # changes the timeout
35
36         if [ ! -z "${NETBOOT}" ] || [ ! -z "${FETCH}" ] || [ ! -z "${HTTPFS}" ] || [ ! -z "${FTPFS}" ]
37         then
38                 if do_netmount
39                 then
40                         livefs_root="${mountpoint}"
41                 else
42                         panic "Unable to find a live file system on the network"
43                 fi
44         else
45                 if [ -n "${ISCSI_PORTAL}" ]
46                 then
47                         do_iscsi && livefs_root="${mountpoint}"
48                 elif [ -n "${PLAIN_ROOT}" ] && [ -n "${ROOT}" ]
49                 then
50                         # Do a local boot from hd
51                         livefs_root=${ROOT}
52                 else
53                         if [ -x /usr/bin/memdiskfind ]
54                         then
55                                 MEMDISK=$(/usr/bin/memdiskfind)
56
57                                 if [ $? -eq 0 ]
58                                 then
59                                         # We found a memdisk, set up phram
60                                         modprobe phram phram=memdisk,${MEMDISK}
61                                         modprobe phram phram=memdisk,${MEMDISK}
62
63                                         # Load mtdblock, the memdisk will be /dev/mtdblock0
64                                         modprobe mtdblock
65                                 fi
66                         fi
67
68                         # Scan local devices for the image
69                         i=0
70                         while [ "$i" -lt 60 ]
71                         do
72                                 livefs_root=$(find_livefs ${i})
73
74                                 if [ -n "${livefs_root}" ]
75                                 then
76                                         break
77                                 fi
78
79                                 sleep 1
80                                 i="$(($i + 1))"
81                         done
82                 fi
83         fi
84
85         if [ -z "${livefs_root}" ]
86         then
87                 panic "Unable to find a medium containing a live file system"
88         fi
89
90         Verify_checksums "${livefs_root}"
91
92         if [ "${TORAM}" ]
93         then
94                 live_dest="ram"
95         elif [ "${TODISK}" ]
96         then
97                 live_dest="${TODISK}"
98         fi
99
100         if [ "${live_dest}" ]
101         then
102                 log_begin_msg "Copying live media to ${live_dest}"
103                 copy_live_to "${livefs_root}" "${live_dest}"
104                 log_end_msg
105         fi
106
107         # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
108         # because the mountpoint is left behind in /proc/mounts, so let's get
109         # rid of it when running from RAM
110         if [ -n "$FROMISO" ] && [ "${TORAM}" ]
111         then
112                 losetup -d /dev/loop0
113
114                 if is_mountpoint /live/fromiso
115                 then
116                         umount /live/fromiso
117                         rmdir --ignore-fail-on-non-empty /live/fromiso \
118                                 >/dev/null 2>&1 || true
119                 fi
120         fi
121
122         if [ -n "${MODULETORAMFILE}" ] || [ -n "${PLAIN_ROOT}" ]
123         then
124                 setup_unionfs "${livefs_root}" "${rootmnt}"
125         else
126                 mac="$(get_mac)"
127                 mac="$(echo ${mac} | sed 's/-//g')"
128                 mount_images_in_directory "${livefs_root}" "${rootmnt}" "${mac}"
129         fi
130
131         # At this point /root should contain the final root filesystem.
132         # Move all mountpoints below /live into /root/lib/live/mount.
133         # This has to be done after mounting the root filesystem to /
134         # otherwise these mount points won't be accessible from the running system.
135         for _MOUNT in $(cat /proc/mounts | cut -f 2 -d " " | grep -e "^/live/")
136         do
137                 local newmount
138                 newmount="${rootmnt}/lib/live/mount/${_MOUNT#/live/}"
139                 mkdir -p "${newmount}"
140                 mount -o move "${_MOUNT}" "${newmount}" > /dev/null 2>&1 || \
141                 mount -o bind "${_MOUNT}" "${newmount}" > /dev/null || \
142                 log_warning_msg "W: failed to move or bindmount ${_MOUNT} to ${newmount}"
143         done
144
145         if [ -n "${ROOT_PID}" ]
146         then
147                 echo "${ROOT_PID}" > "${rootmnt}"/lib/live/root.pid
148         fi
149
150         log_end_msg
151
152         # aufs2 in kernel versions around 2.6.33 has a regression:
153         # directories can't be accessed when read for the first the time,
154         # causing a failure for example when accessing /var/lib/fai
155         # when booting FAI, this simple workaround solves it
156         ls /root/* >/dev/null 2>&1
157
158         # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
159         # because the mountpoint is left behind in /proc/mounts, so let's get
160         # rid of it when running from RAM
161         if [ -n "$FINDISO" ] && [ "${TORAM}" ]
162         then
163                 losetup -d /dev/loop0
164
165                 if is_mountpoint /root/lib/live/mount/findiso
166                 then
167                         umount /root/lib/live/mount/findiso
168                         rmdir --ignore-fail-on-non-empty /root/lib/live/mount/findiso \
169                                 >/dev/null 2>&1 || true
170                 fi
171         fi
172
173         if [ -L /root/etc/resolv.conf ] ; then
174                 # assume we have resolvconf
175                 DNSFILE="${rootmnt}/etc/resolvconf/resolv.conf.d/base"
176         else
177                 DNSFILE="${rootmnt}/etc/resolv.conf"
178         fi
179         if [ -f /etc/resolv.conf ] && [ ! -s ${DNSFILE} ]
180         then
181                 log_begin_msg "Copying /etc/resolv.conf to ${DNSFILE}"
182                 cp -v /etc/resolv.conf ${DNSFILE}
183                 log_end_msg
184         fi
185
186         if ! [ -d "/lib/live/boot" ]
187         then
188                 panic "A wrong rootfs was mounted."
189         fi
190
191         Fstab
192         Netbase
193
194         Swap
195
196         exec 1>&6 6>&-
197         exec 2>&7 7>&-
198         kill ${tailpid}
199         [ -w "${rootmnt}/var/log/" ] && mkdir -p "${rootmnt}/var/log/live" && cp boot.log "${rootmnt}/var/log/live" 2>/dev/null
200 }