modules/system/boot/kernel.nix: disable "elevator=cfq" boot parameter for the time being

This setting causes the init ram disk to hang indefinitely on some systems.

svn path=/nixos/trunk/; revision=29228
This commit is contained in:
Peter Simons 2011-09-12 18:01:18 +00:00
parent 64340dc03c
commit c01c41e2da

View file

@ -122,7 +122,7 @@ let kernel = config.boot.kernelPackages.kernel; in
boot.kernelParams =
[ "splash=verbose"
# Force the Completely Fair Scheduler to be used by default.
"elevator=cfq"
#"elevator=cfq"
] ++
optional config.boot.vesa "vga=0x317";