guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: system: Change default kernel-arguments to '("quiet").


From: guix-commits
Subject: 01/01: system: Change default kernel-arguments to '("quiet").
Date: Mon, 22 Apr 2019 17:18:36 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 5582aa8e31bf88f981caedeb4fbbb758486b6ca7
Author: Christopher Baines <address@hidden>
Date:   Sun Apr 21 21:36:47 2019 +0100

    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.
---
 doc/guix.texi  | 2 +-
 gnu/system.scm | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 785329a..3ec1cf8 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -10461,7 +10461,7 @@ The package object of the operating system kernel to 
address@hidden
 only the Linux-libre kernel is supported.  In the future, it will be
 possible to use the address@hidden
 
address@hidden @code{kernel-arguments} (default: @code{'()})
address@hidden @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")}.
 
diff --git a/gnu/system.scm b/gnu/system.scm
index 24243eb..c4f5740 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -160,7 +160,7 @@
   (kernel operating-system-kernel                 ; package
           (default linux-libre))
   (kernel-arguments operating-system-user-kernel-arguments
-                    (default '()))                ; list of gexps/strings
+                    (default '("quiet")))         ; list of gexps/strings
   (bootloader operating-system-bootloader)        ; <bootloader-configuration>
   (label operating-system-label                   ; string
          (thunked)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]