Fix description of boot.consoleLogLevel

This commit is contained in:
Eelco Dolstra 2015-07-25 18:04:27 +02:00
parent 9d5508d85c
commit 174dd0eae7
2 changed files with 6 additions and 3 deletions

View File

@ -218,6 +218,8 @@ in
system.boot.loader.kernelFile = "bzImage"; system.boot.loader.kernelFile = "bzImage";
environment.systemPackages = [ pkgs.grub2 pkgs.grub2_efi pkgs.syslinux ]; environment.systemPackages = [ pkgs.grub2 pkgs.grub2_efi pkgs.syslinux ];
boot.consoleLogLevel = 7;
# In stage 1 of the boot, mount the CD as the root FS by label so # In stage 1 of the boot, mount the CD as the root FS by label so
# that we don't need to know its device. We pass the label of the # that we don't need to know its device. We pass the label of the
# root filesystem on the kernel command line, rather than in # root filesystem on the kernel command line, rather than in
@ -229,6 +231,8 @@ in
boot.kernelParams = boot.kernelParams =
[ "root=LABEL=${config.isoImage.volumeID}" [ "root=LABEL=${config.isoImage.volumeID}"
"boot.shell_on_fail" "boot.shell_on_fail"
"nomodeset"
"systemd.log_level=debug"
]; ];
fileSystems."/" = fileSystems."/" =

View File

@ -49,9 +49,8 @@ in
type = types.int; type = types.int;
default = 4; default = 4;
description = '' description = ''
The kernel console log level. Only log messages with a The kernel console log level. Log messages with a priority
priority numerically less than this will appear on the numerically less than this will not appear on the console.
console.
''; '';
}; };