diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-12-04 18:25:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-12-04 18:25:36 +0000 |
commit | fd5071ac081e260a84f16cb1dd26ea486e4b27c3 (patch) | |
tree | f1ff1a472b7b8b78ba284d18c6abe4a8c35a8935 | |
parent | 1484fe7562a5a26c965911aa27e24fdda59c1d55 (diff) | |
download | drakx-fd5071ac081e260a84f16cb1dd26ea486e4b27c3.tar drakx-fd5071ac081e260a84f16cb1dd26ea486e4b27c3.tar.gz drakx-fd5071ac081e260a84f16cb1dd26ea486e4b27c3.tar.bz2 drakx-fd5071ac081e260a84f16cb1dd26ea486e4b27c3.tar.xz drakx-fd5071ac081e260a84f16cb1dd26ea486e4b27c3.zip |
mount loopback ro to have less warnings
-rwxr-xr-x | move/tree/mdk_behind_totem | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/move/tree/mdk_behind_totem b/move/tree/mdk_behind_totem index bfd945fe8..62618ea93 100755 --- a/move/tree/mdk_behind_totem +++ b/move/tree/mdk_behind_totem @@ -56,13 +56,13 @@ mount_cd() { echo mount_cd if [ -e /cdrom/live_tree.clp ]; then /image_always/sbin/losetup -r -e gz /dev/$main_loop /cdrom/live_tree.clp - /image_always/bin/mount /dev/$main_loop /image + /image_always/bin/mount -r /dev/$main_loop /image else ln -sf /cdrom/live_tree /image fi losetup -r -e gz /dev/$boot_loop /cdrom/live_tree_boot.clp - mount /dev/$boot_loop /image_boot + mount -r /dev/$boot_loop /image_boot ln -sf /image/lib / |