Add back persistance fsck option
[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         if [ -n "${ROOT_PID}" ]
132         then
133                 echo "${ROOT_PID}" > "${rootmnt}"/lib/live/root.pid
134         fi
135
136         log_end_msg
137
138         # aufs2 in kernel versions around 2.6.33 has a regression:
139         # directories can't be accessed when read for the first the time,
140         # causing a failure for example when accessing /var/lib/fai
141         # when booting FAI, this simple workaround solves it
142         ls /root/* >/dev/null 2>&1
143
144         # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
145         # because the mountpoint is left behind in /proc/mounts, so let's get
146         # rid of it when running from RAM
147         if [ -n "$FINDISO" ] && [ "${TORAM}" ]
148         then
149                 losetup -d /dev/loop0
150
151                 if is_mountpoint /run/live/findiso
152                 then
153                         umount /run/live/findiso
154                         rmdir --ignore-fail-on-non-empty /run/live/findiso \
155                                 >/dev/null 2>&1 || true
156                 fi
157         fi
158
159         if [ -L /root/etc/resolv.conf ] ; then
160                 # assume we have resolvconf
161                 DNSFILE="${rootmnt}/etc/resolvconf/resolv.conf.d/base"
162         else
163                 DNSFILE="${rootmnt}/etc/resolv.conf"
164         fi
165         if [ -f /etc/resolv.conf ] && ! grep -E -q -v '^[[:space:]]*#|^[[:space:]]*$' ${DNSFILE}
166         then
167                 log_begin_msg "Copying /etc/resolv.conf to ${DNSFILE}"
168                 cp -v /etc/resolv.conf ${DNSFILE}
169                 log_end_msg
170         fi
171
172         if ! [ -d "/lib/live/boot" ]
173         then
174                 panic "A wrong rootfs was mounted."
175         fi
176
177         Fstab
178         Netbase
179
180         Swap
181
182         exec 1>&6 6>&-
183         exec 2>&7 7>&-
184         kill ${tailpid}
185         [ -w "${rootmnt}/var/log/" ] && mkdir -p "${rootmnt}/var/log/live" && ( \
186                                 cp boot.log "${rootmnt}/var/log/live" 2>/dev/null; \
187                                 cp fsck.log "${rootmnt}/var/log/live" 2>/dev/null )
188 }