From: T(A)ILS developers Date: Mon, 1 Nov 2010 19:38:26 +0000 (+0100) Subject: Fixing fromiso= on Squeeze. X-Git-Tag: debian/2.0.12-1~1 X-Git-Url: http://git.grml.org/?p=live-boot-grml.git;a=commitdiff_plain;h=cf206a0572be50a96bf5ac88c97c79626d3623bb Fixing fromiso= on Squeeze. When running "mount DEV MOUNTPOINT" for the device provided by the fromiso= boot option, Squeeze's busybox errors out with: Mounting $DEV on /isofrom failed: No such file on directory. Using mount -t auto fixes the bug. --- diff --git a/scripts/live b/scripts/live index 4b1b92d..d79beed 100755 --- a/scripts/live +++ b/scripts/live @@ -1485,7 +1485,7 @@ check_dev () echo "Warning: device for bootoption isofrom= ($FROMISO) not found.">>/live.log else mkdir /isofrom - mount "$ISO_DEVICE" /isofrom + mount -t auto "$ISO_DEVICE" /isofrom ISO_NAME="$(echo $FROMISO | sed "s|$ISO_DEVICE||")" loopdevname=$(setup_loop "/isofrom/${ISO_NAME}" "loop" "/sys/block/loop*" "" '') devname="${loopdevname}"