Updating file paths for /lib/live/mount.
[live-boot-grml.git] / scripts / boot / 9990-main.sh
index ef41fb0..171d0ea 100755 (executable)
@@ -146,8 +146,8 @@ Main ()
        esac
 
        # Move to the new root filesystem so that programs there can get at it.
-       mkdir -p /root/lib/live/image
-       mount --move /live/image /root/lib/live/image
+       mkdir -p /root/lib/live/mount/image
+       mount --move /live/image /root/lib/live/mount/image
 
        # aufs2 in kernel versions around 2.6.33 has a regression:
        # directories can't be accessed when read for the first the time,
@@ -158,8 +158,8 @@ Main ()
        # Move findiso directory to the new root filesystem so that programs there can get at it.
        if [ -d /live/findiso ]
        then
-               mkdir -p /root/lib/live/findiso
-               mount -n --move /live/findiso /root/lib/live/findiso
+               mkdir -p /root/lib/live/mount/findiso
+               mount -n --move /live/findiso /root/lib/live/mount/findiso
        fi
 
        # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
@@ -169,10 +169,10 @@ Main ()
        then
                losetup -d /dev/loop0
 
-               if is_mountpoint /root/lib/live/findiso
+               if is_mountpoint /root/lib/live/mount/findiso
                then
-                       umount /root/lib/live/findiso
-                       rmdir --ignore-fail-on-non-empty /root/lib/live/findiso \
+                       umount /root/lib/live/mount/findiso
+                       rmdir --ignore-fail-on-non-empty /root/lib/live/mount/findiso \
                                >/dev/null 2>&1 || true
                fi
        fi