|
|
@ -627,7 +627,14 @@ then
|
|
|
|
then
|
|
|
|
then
|
|
|
|
if [ "${USE_AUFS_NORMAL}" != '1' ]; then
|
|
|
|
if [ "${USE_AUFS_NORMAL}" != '1' ]; then
|
|
|
|
good_msg 'Mounting squashfs filesystem'
|
|
|
|
good_msg 'Mounting squashfs filesystem'
|
|
|
|
mount -t squashfs -o loop,ro "${CDROOT_PATH}/${LOOPEXT}${LOOP}" "${NEW_ROOT}/mnt/livecd"
|
|
|
|
mount -t squashfs -o loop,ro "${CDROOT_PATH}/${LOOPEXT}${LOOP}" "${NEW_ROOT}/mnt/livecd" || {
|
|
|
|
|
|
|
|
bad_msg "Squashfs filesystem could not be mounted, dropping into shell."
|
|
|
|
|
|
|
|
if [ -e /proc/filesystems ]; then
|
|
|
|
|
|
|
|
fgrep -q squashfs /proc/filesystems || \
|
|
|
|
|
|
|
|
bad_msg "HINT: Your kernel does not know filesystem \"squashfs\"."
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
do_rundebugshell
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
good_msg 'Mounting squashfs & aufs filesystems'
|
|
|
|
good_msg 'Mounting squashfs & aufs filesystems'
|
|
|
|
setup_squashfs_aufs
|
|
|
|
setup_squashfs_aufs
|
|
|
|