Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/, doc/
Date: Wed, 04 Jan 2017 00:11:49
Message-Id: 1483421768.6cdbff3a7571e3e814fded0774e9b48cdcbffe38.robbat2@gentoo
1 commit: 6cdbff3a7571e3e814fded0774e9b48cdcbffe38
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 05:36:08 2017 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 05:36:08 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=6cdbff3a
7
8 Add quiet_genkernel to make quieter boot.
9
10 The kernel boot option 'quiet' makes both the kernel & genkernel boot
11 quietly.
12
13 The new kernel boot option 'quiet_genkernel' just makes genkernel boot
14 quietly, while not affecting the kernel verbosity.
15
16 Fixes: https://bugs.gentoo.org/show_bug.cgi?id=474472
17 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
18
19 defaults/linuxrc | 2 +-
20 doc/genkernel.8.txt | 6 +++++-
21 2 files changed, 6 insertions(+), 2 deletions(-)
22
23 diff --git a/defaults/linuxrc b/defaults/linuxrc
24 index 965d28f..d09b96f 100644
25 --- a/defaults/linuxrc
26 +++ b/defaults/linuxrc
27 @@ -119,7 +119,7 @@ do
28 dobtrfs*)
29 USE_BTRFS=1
30 ;;
31 - quiet)
32 + quiet|quiet_genkernel)
33 QUIET=1
34 ;;
35 # Debug Options
36
37 diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
38 index ca8eff0..dafa25b 100644
39 --- a/doc/genkernel.8.txt
40 +++ b/doc/genkernel.8.txt
41 @@ -551,10 +551,14 @@ recognized by the kernel itself.
42 switch_root into "<CHROOT>/<SUBDIR>" instead of "<CHROOT>/".
43 <CHROOT> is "/newroot" (or "/union") usually.
44
45 -*quiet*::
46 +*quiet_genkernel*::
47 Do not print anything but error and warning messages during
48 the execution of the initramfs init scripts.
49
50 +*quiet*::
51 + Implies *quiet_genkernel*, but also recognized by the kernel to
52 + suppress kernel messages.
53 +
54 *debug*::
55 Drop into a debug shell early in the process.