@@ -118,12 +118,12 @@ drakx_stuff: sub lomount_clp { my ($name, $needed_file) = @_; - my ($clp, $dir) = ("/image_raw/live_tree_$name.clp", "/image_$name"); + my ($clp, $dir) = ("/cdrom/live_tree_$name.clp", "/image_$name"); -e "$dir$needed_file" and return; if (! -e $clp || cat_('/proc/cmdline') =~ /\blive\b/) { - symlink "/image_raw/live_tree_$name", $dir; + symlink "/cdrom/live_tree_$name", $dir; return; } diff --git a/move/todo b/move/todo index 764bfb4b6..894fe1cb2 100644 --- a/ move/todo+++ b/ move/todo@@ -38,8 +38,6 @@ need to list things to remove in MCC (drakgw, etc -> things that have not the necessary packages and we don't want to provide) -cd supermounted in /image_raw, not on desktop - usb key @@ -13,13 +13,13 @@ my @l = map { push @l, grep { $_ } map { (split)[5] } map { cat_("/proc/$_/maps") } @pids; if ($ARGV[0] eq '--totem') { - @l = grep { m!/image(_boot|_raw)?/! } @l; + @l = grep { m!/(image(_boot)?|cdrom)/! } @l; $ARGV[0] = '--server'; } foreach (uniq @l) { if ($ARGV[0] eq '--server') { s!/image(_always|_boot|_totem)?/!/tmp/live_tree/!; - s!/image_raw/live_tree!/tmp/live_tree!; + s!/cdrom/live_tree!/tmp/live_tree!; } print "$_\n"; } @@ -49,10 +49,10 @@ umount_cd() { mount_cd() { echo mount_cd - /image_always/sbin/losetup -r -e gz /dev/$main_loop /image_raw/live_tree.clp + /image_always/sbin/losetup -r -e gz /dev/$main_loop /cdrom/live_tree.clp /image_always/bin/mount /dev/$main_loop /image - losetup -r -e gz /dev/$boot_loop /image_raw/live_tree_boot.clp + losetup -r -e gz /dev/$boot_loop /cdrom/live_tree_boot.clp mount /dev/$boot_loop /image_boot ln -sf /image/lib / @@ -22,7 +22,7 @@ sub to_memory { if (-e "/$file") { system("sudo mv /$file /tmp"); } else { - system("sudo cp /image_raw/$file /tmp"); + system("sudo cp /cdrom/$file /tmp"); } system("sudo losetup /dev/$loop /tmp/$file"); } @@ -30,7 +30,7 @@ sub to_memory { sub to_cdrom { my ($loop, $file) = @_; my $f = -e "/$file" ? "/$file" : -e "/tmp/$file" ? "/tmp/$file" : return; - system("sudo losetup /dev/$loop /image_raw/$file"); + system("sudo losetup /dev/$loop /cdrom/$file"); system("sudo rm $f"); } |