* Put the closure of stdenv on the CD to speed up the installation.

svn path=/nixos/trunk/; revision=7775
This commit is contained in:
Eelco Dolstra 2007-01-23 14:38:15 +00:00
parent d197a0f2cc
commit 2554337f82

View File

@ -126,7 +126,7 @@ rec {
# kernel, the initrd produced above, and the closure of the stage 2 # kernel, the initrd produced above, and the closure of the stage 2
# init. # init.
rescueCD = import ../helpers/make-iso9660-image.nix { rescueCD = import ../helpers/make-iso9660-image.nix {
inherit (pkgs) stdenv cdrtools; inherit (pkgs) stdenv perl cdrtools;
isoName = "nixos.iso"; isoName = "nixos.iso";
# Single files to be copied to fixed locations on the CD. # Single files to be copied to fixed locations on the CD.
@ -159,6 +159,10 @@ rec {
{ object = system.bootStage2; { object = system.bootStage2;
symlink = "/init"; symlink = "/init";
} }
# To speed up the installation, provide the full stdenv.
{ object = pkgs.stdenv;
symlink = "none";
}
]; ];
bootable = true; bootable = true;