diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:46:37 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:25:54 +0100 |
commit | 3d52fbcb4fe70132ade14759d76573b471294800 (patch) | |
tree | 7ee8e69a62e032cb427e6b3ae96481ae4e8c9df8 /scripts/live-bottom/05mountpoints | |
parent | 9fc9e2a1a11b0edada38cb501fefe4f58aa414ac (diff) | |
download | live-boot-3d52fbcb4fe70132ade14759d76573b471294800.tar.gz live-boot-3d52fbcb4fe70132ade14759d76573b471294800.zip |
Adding live-initramfs 1.87.3-1.
Diffstat (limited to 'scripts/live-bottom/05mountpoints')
-rwxr-xr-x | scripts/live-bottom/05mountpoints | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/live-bottom/05mountpoints b/scripts/live-bottom/05mountpoints index 411660d..36c2972 100755 --- a/scripts/live-bottom/05mountpoints +++ b/scripts/live-bottom/05mountpoints @@ -21,7 +21,9 @@ esac log_begin_msg "$DESCRIPTION" # Move to the new root filesystem so that programs there can get at it. -mkdir -p /root/cdrom -mount -n -o move /cdrom /root/cdrom +if [ ! -d /root/live_media ]; then + mkdir -p /root/live_media + mount -n -o move /live_media /root/live_media +fi log_end_msg |