[PATCH] system: Change default kernel-arguments to '("quiet").

  • Done
  • quality assurance status badge
Details
2 participants
  • Danny Milosavljevic
  • Christopher Baines
Owner
unassigned
Submitted by
Christopher Baines
Severity
normal

Debbugs page

Christopher Baines wrote 6 years ago
(address . guix-patches@gnu.org)
20190421205846.2242-1-mail@cbaines.net
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(-)

Toggle diff (28 lines)
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.}.
-@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")}.
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/strings
+ (default '("quiet"))) ; list of gexps/strings
(bootloader operating-system-bootloader) ; <bootloader-configuration>
(label operating-system-label ; string
(thunked)
--
2.21.0
Danny Milosavljevic wrote 6 years ago
(name . Christopher Baines)(address . mail@cbaines.net)(address . 35369@debbugs.gnu.org)
20190422163512.1cf3ff00@scratchpost.org
Good idea.

LGTM!
-----BEGIN PGP SIGNATURE-----

iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAly90SAACgkQ5xo1VCww
uqXl1AgAjfZb9Dxxg5fDDYbC3h4Iut6DQ0zFD/C+OdlY1HMrgwxems0DBVsaIMB9
qzp3K/wNqbchTmdZ8G7m6AW17VMfSV1EGwkie7uy/Prmmbr9cJoeHrJlvZPtyKde
RpzdMYUlXnuCfEbfoYaoyqOK2YiFp7YJbo20rQOIo8+9VShREPiHbvBSZqM2n3ie
1OdKfETmgEQ3rxGnLAFYc0FaiRD5bNLSqPUh6jxVOaLDsSHHfxKxW6Wh+u9VKs39
pHg8R3Y1sMUAgXm4n4SuMx+UhAFtosvIism8iKdzjiQCcXz1xt/IpDJPAgXz51B3
gE8FCAaQuBBGXwOAn/cYnHk6MAGTZQ==
=JmUj
-----END PGP SIGNATURE-----


Christopher Baines wrote 6 years ago
(name . Danny Milosavljevic)(address . dannym@scratchpost.org)(address . 35369-done@debbugs.gnu.org)
87o94x6xex.fsf@cbaines.net
Danny Milosavljevic <dannym@scratchpost.org> writes:

Toggle quote (4 lines)
> Good idea.
>
> LGTM!

Thanks for taking a look, I've pushed this patch now.
-----BEGIN PGP SIGNATURE-----

iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAly+slZfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF
ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE
9XcV4xAArDdDKpidSL9gG4p9yexyiTnun4XtyWX1s7oj2W8/qabUauOMwW6I4PjW
fdJLA4Eks7BGuEODYCYMl1jfEHcPhC2+ZDGx5kJRCyHYFXtrddqeQmrFkSp8kI4U
rj99F9a/Su79wtMGroWHjyjhreOb/8lzlAnuJrCQQxy3wPBpBXTju+fnoZydFl/v
hUc3TnoTlJmjRR35GKI1/We3FUjKE2C2S3+ngTQS43Zd9XQTeCDDjAtoBC/Hxgoc
Cr1y9Nlhi1vN3kSaUQJBq/PStQABN0Niu4hzdDZNVP1mL7YhRHL1hH8Pf1eMbHMs
S8xBlGpeNfPt/RoW190D8cbh8lII64yUGCLOeel3y7h/Q+EP6Owrctye88hH7FJ0
X13aFjtE7VldhikCFbyHJmB1b/EMMu2yQTZIqBA2Jet7aXYdrPYO2cz8FXL8Bvnb
Imyg023n/BPhDy3ueNEJHohJ8Eq/46v7ohLBW4EOKmUGSQwgR6pUAjbiT6V8b6Ma
AHDSNSCg9n8NeSweTVRycQxmQoscDtTs3BrSAnDxKgXpEMaFzXEodJTT4xdvmDHQ
GYG614Jt1ehS7awu/NPSkg2+kTD8N489u+Y3zxU7noBVLGZx3coakogQidyIYh0C
7+jizn6LWnrHnE2PICgyRmUoQc6sb7++IQHcFjjWLciEymvM3P8=
=Yhbi
-----END PGP SIGNATURE-----

Closed
?
Your comment

This issue is archived.

To comment on this conversation send an email to 35369@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 35369
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch
You may also tag this issue. See list of standard tags. For example, to set the confirmed and easy tags
mumi command -t +confirmed -t +easy
Or, remove the moreinfo tag and set the help tag
mumi command -t -moreinfo -t +help