diff options
author | Christopher Baines <mail@cbaines.net> | 2019-04-21 21:36:47 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-04-22 22:18:00 +0100 |
commit | 5582aa8e31bf88f981caedeb4fbbb758486b6ca7 (patch) | |
tree | d6a43deba9eee1be71ff0afe946539d077ab0d99 /doc | |
parent | fa61900705ced88b058e2b49d9a8cc3ae3ba907e (diff) | |
download | guix-5582aa8e31bf88f981caedeb4fbbb758486b6ca7.tar guix-5582aa8e31bf88f981caedeb4fbbb758486b6ca7.tar.gz |
system: Change default kernel-arguments to '("quiet").
This improves the readability of the boot process, especially when using full
disk encryption where you're required to enter the passphrase at a particular
point.
* gnu/system.scm (<operating-system>)[kernel-arguments]: Change the default to
'("quiet").
* doc/guix.texi (operating-system Reference): Document this change.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 785329add8..3ec1cf852a 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -10461,7 +10461,7 @@ The package object of the operating system kernel to use@footnote{Currently only the Linux-libre kernel is supported. In the future, it will be possible to use the GNU@tie{}Hurd.}. -@item @code{kernel-arguments} (default: @code{'()}) +@item @code{kernel-arguments} (default: @code{'("quiet")}) List of strings or gexps representing additional arguments to pass on the command-line of the kernel---e.g., @code{("console=ttyS0")}. |