Forgot all-module fixes for the correct booting in rescue CD

svn path=/nixos/branches/modular-nixos/; revision=16386
This commit is contained in:
Michael Raskin 2009-07-16 09:48:22 +00:00
parent a7f24fd4bb
commit e155a46516

View file

@ -34,6 +34,17 @@
];
boot.kernelPackages = pkgs.kernelPackages_2_6_31_rc2_old_i686;
boot.initrd.extraKernelModules = ["evdev" "i8042" "pcips2" "serio"
"sd_mod" "libata" "unix" "usbhid" "uhci_hcd" "atkbd" "xtkbd" "fbdev"];
boot.kernelModules = ["fbcon" "radeonfb" "intelfb" "sisfb" "nvidiafb"
"cirrusfb"];
boot.kernelParams = [
"selinux=0"
"acpi=on"
"apm=off"
"console=tty1"
"splash=verbose"
];
services.ttyBackgrounds.enable = false;
}