7 if [ -x /scripts
/local-top
/cryptroot
]
9 /scripts
/local-top
/cryptroot
16 tail -f boot.log
>&7 &
21 _CMDLINE
="$(cat /proc/cmdline)"
30 if [ -e /conf
/param.conf
]
35 # Needed here too because some things (*cough* udev *cough*)
38 if [ ! -z "${NETBOOT}" ] || [ ! -z "${FETCH}" ] || [ ! -z "${HTTPFS}" ] || [ ! -z "${FTPFS}" ]
42 livefs_root
="${mountpoint}"
44 panic
"Unable to find a live file system on the network"
47 if [ -n "${ISCSI_PORTAL}" ]
49 do_iscsi
&& livefs_root
="${mountpoint}"
50 elif [ -n "${PLAIN_ROOT}" ] && [ -n "${ROOT}" ]
52 # Do a local boot from hd
55 if [ -x /usr
/bin
/memdiskfind
]
57 MEMDISK
=$
(/usr
/bin
/memdiskfind
)
61 # We found a memdisk, set up phram
62 modprobe phram phram
=memdisk
,${MEMDISK}
64 # Load mtdblock, the memdisk will be /dev/mtdblock0
69 # Scan local devices for the image
73 livefs_root
=$
(find_livefs
${i})
75 if [ -n "${livefs_root}" ]
86 if [ -z "${livefs_root}" ]
88 panic
"Unable to find a medium containing a live file system"
91 Verify_checksums
"${livefs_root}"
101 if [ "${live_dest}" ]
103 log_begin_msg
"Copying live media to ${live_dest}"
104 copy_live_to
"${livefs_root}" "${live_dest}"
108 # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
109 # because the mountpoint is left behind in /proc/mounts, so let's get
110 # rid of it when running from RAM
111 if [ -n "$FROMISO" ] && [ "${TORAM}" ]
113 losetup
-d /dev
/loop0
115 if is_mountpoint
/live
/fromiso
118 rmdir --ignore-fail-on-non-empty /live
/fromiso \
119 >/dev
/null
2>&1 || true
123 if [ -n "${MODULETORAMFILE}" ] ||
[ -n "${PLAIN_ROOT}" ]
125 setup_unionfs
"${livefs_root}" "${rootmnt}"
128 mac
="$(echo ${mac} | sed 's/-//g')"
129 mount_images_in_directory
"${livefs_root}" "${rootmnt}" "${mac}"
132 # At this point /root should contain the final root filesystem.
133 # Move all mountpoints below /live into /root/lib/live/mount.
134 # This has to be done after mounting the root filesystem to /
135 # otherwise these mount points won't be accessible from the running system.
136 for _MOUNT
in $
(cat /proc
/mounts | cut
-f 2 -d " " |
grep -e "^/live/")
139 newmount
="${rootmnt}/lib/live/mount/${_MOUNT#/live/}"
140 mkdir
-p "${newmount}"
141 mount
-o move
"${_MOUNT}" "${newmount}" > /dev
/null
2>&1 || \
142 mount
-o bind "${_MOUNT}" "${newmount}" > /dev
/null || \
143 log_warning_msg
"W: failed to move or bindmount ${_MOUNT} to ${newmount}"
146 if [ -n "${ROOT_PID}" ]
148 echo "${ROOT_PID}" > "${rootmnt}"/lib
/live
/root.pid
153 # unionfs-fuse needs /dev to be bind-mounted for the duration of
154 # live-bottom; udev's init script will take care of things after that
155 case "${UNIONTYPE}" in
157 mount
-n -o bind /dev
"${rootmnt}/dev"
162 # aufs2 in kernel versions around 2.6.33 has a regression:
163 # directories can't be accessed when read for the first the time,
164 # causing a failure for example when accessing /var/lib/fai
165 # when booting FAI, this simple workaround solves it
166 ls /root
/* >/dev
/null
2>&1
168 # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
169 # because the mountpoint is left behind in /proc/mounts, so let's get
170 # rid of it when running from RAM
171 if [ -n "$FINDISO" ] && [ "${TORAM}" ]
173 losetup
-d /dev
/loop0
175 if is_mountpoint
/root
/lib
/live
/mount
/findiso
177 umount
/root
/lib
/live
/mount
/findiso
178 rmdir --ignore-fail-on-non-empty /root
/lib
/live
/mount
/findiso \
179 >/dev
/null
2>&1 || true
183 if [ -f /etc
/resolv.conf
] && [ ! -s ${rootmnt}/etc
/resolv.conf
]
185 log_begin_msg
"Copying /etc/resolv.conf to ${rootmnt}/etc/resolv.conf"
186 cp -v /etc
/resolv.conf
${rootmnt}/etc
/resolv.conf
190 if ! [ -d "/lib/live/boot" ]
192 panic
"A wrong rootfs was mounted."
202 umount
"${rootmnt}/dev"
209 [ -w "${rootmnt}/var/log/" ] && mkdir -p "${rootmnt}/var/log/live" && cp boot.log "${rootmnt}/var/log/live" 2>/dev
/null