* Put the closure of stdenv on the CD to speed up the installation.
svn path=/nixos/trunk/; revision=7775
This commit is contained in:
parent
d197a0f2cc
commit
2554337f82
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue