summary refs log tree commit diff
path: root/helpers/make-iso9660-image.sh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-01-24 16:56:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-01-24 16:56:09 +0000
commit49e882905368f495bf984b7e3b18eec869f842bc (patch)
treeedde4f4971f75a3408028697666a3faeeb45d579 /helpers/make-iso9660-image.sh
parent7fa31be4402a9ecd42b79dd860e068d614ca8f5c (diff)
downloadnixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.tar
nixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.tar.gz
nixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.tar.bz2
nixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.tar.lz
nixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.tar.xz
nixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.tar.zst
nixpkgs-49e882905368f495bf984b7e3b18eec869f842bc.zip
* Use unionfs to provide a real Live CD, i.e., the files on the CD
  appear writable (though all writes go to a tmpfs).  This allows you
  to run Nix operations on the Live CD.  However, we're not quite
  there yet since the CD doesn't have a valid Nix database.  So for
  instance a garbage collect will cause everything to be deleted,
  hanging the system.

svn path=/nixos/trunk/; revision=10276
Diffstat (limited to 'helpers/make-iso9660-image.sh')
-rw-r--r--helpers/make-iso9660-image.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/make-iso9660-image.sh b/helpers/make-iso9660-image.sh
index aa8cb291a3e..6f18f0e3e5b 100644
--- a/helpers/make-iso9660-image.sh
+++ b/helpers/make-iso9660-image.sh
@@ -20,7 +20,7 @@ if test -n "$bootable"; then
         fi
     done
 
-    bootFlags="-b $bootImage -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
+    bootFlags="-b $bootImage -c .boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
 fi
 
 touch pathlist
@@ -59,7 +59,7 @@ cat pathlist
 # !!! -f is a quick hack.
 ensureDir $out/iso
 genisoimage -r -J -o $out/iso/$isoName $bootFlags \
-    -graft-points -path-list pathlist
+    -hide-rr-moved -graft-points -path-list pathlist
 
 ensureDir $out/nix-support
 echo $system > $out/nix-support/system