From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:40163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIJgy-0001VZ-NC for guix-patches@gnu.org; Sun, 21 Apr 2019 17:08:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIJgx-0006Do-Oc for guix-patches@gnu.org; Sun, 21 Apr 2019 17:08:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35645) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hIJgx-0006Dc-Lt for guix-patches@gnu.org; Sun, 21 Apr 2019 17:08:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hIJgx-0007PB-7i for guix-patches@gnu.org; Sun, 21 Apr 2019 17:08:03 -0400 Subject: [bug#35369] [PATCH] system: Change default kernel-arguments to '("quiet"). Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:39813) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIJg4-0000mS-8M for guix-patches@gnu.org; Sun, 21 Apr 2019 17:07:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIJY4-0001gh-Uo for guix-patches@gnu.org; Sun, 21 Apr 2019 16:58:53 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:58700) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIJY4-0001fQ-PW for guix-patches@gnu.org; Sun, 21 Apr 2019 16:58:52 -0400 Received: from localhost (71.38.6.51.dyn.plus.net [51.6.38.71]) by mira.cbaines.net (Postfix) with ESMTPSA id 2753816D00 for ; Sun, 21 Apr 2019 21:58:47 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 6644f391 for ; Sun, 21 Apr 2019 20:58:46 +0000 (UTC) From: Christopher Baines Date: Sun, 21 Apr 2019 21:58:46 +0100 Message-Id: <20190421205846.2242-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35369@debbugs.gnu.org This improves the readability of the boot process, especially when using = full disk encryption where you're required to enter the passphrase at a partic= ular point. * gnu/system.scm ()[kernel-arguments]: Change the defau= lt 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 8c7522f286..bfde085ac4 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -10453,7 +10453,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.}. =20 -@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=3DttyS0")}. =20 diff --git a/gnu/system.scm b/gnu/system.scm index 24243eb707..c4f5740df2 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/string= s + (default '("quiet"))) ; list of gexps/string= s (bootloader operating-system-bootloader) ; (label operating-system-label ; string (thunked) --=20 2.21.0