nixos-iso: Re-enable new kernel iso images (close #2839)

This commit is contained in:
William A. Kennington III 2014-06-05 16:00:25 -05:00 committed by Vladimír Čunát
parent d619f0ef6d
commit 86711e4120
3 changed files with 11 additions and 17 deletions

View file

@ -3,6 +3,5 @@
{
imports = [ ./installation-cd-graphical.nix ];
boot.kernelPackages = pkgs.linuxPackages_3_10;
boot.vesa = false;
boot.kernelPackages = pkgs.linuxPackages_latest;
}

View file

@ -3,6 +3,5 @@
{
imports = [ ./installation-cd-minimal.nix ];
boot.kernelPackages = pkgs.linuxPackages_3_10;
boot.vesa = false;
boot.kernelPackages = pkgs.linuxPackages_latest;
}

View file

@ -122,14 +122,6 @@ in rec {
inherit system;
});
/*
iso_minimal_new_kernel = forAllSystems (system: makeIso {
module = ./modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix;
type = "minimal-new-kernel";
inherit system;
});
*/
iso_graphical = forAllSystems (system: makeIso {
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
type = "graphical";
@ -138,13 +130,17 @@ in rec {
# A variant with a more recent (but possibly less stable) kernel
# that might support more hardware.
/*
iso_new_kernel = forAllSystems (system: makeIso {
module = ./modules/installer/cd-dvd/installation-cd-new-kernel.nix;
type = "new-kernel";
iso_minimal_new_kernel = forAllSystems (system: makeIso {
module = ./modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix;
type = "minimal-new-kernel";
inherit system;
});
iso_graphical_new_kernel = forAllSystems (system: makeIso {
module = ./modules/installer/cd-dvd/installation-cd-graphical-new-kernel.nix;
type = "graphical-new-kernel";
inherit system;
});
*/
# A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF).