* 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
1 changed files with 5 additions and 1 deletions

View File

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