From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 86461139085 for ; Wed, 4 Jan 2017 00:11:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC8D8E0C0C; Wed, 4 Jan 2017 00:11:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86EE0E0C0C for ; Wed, 4 Jan 2017 00:11:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37ED23411D7 for ; Wed, 4 Jan 2017 00:11:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0CD3261C for ; Wed, 4 Jan 2017 00:11:45 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1483421768.6cdbff3a7571e3e814fded0774e9b48cdcbffe38.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/, doc/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc doc/genkernel.8.txt X-VCS-Directories: doc/ defaults/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 6cdbff3a7571e3e814fded0774e9b48cdcbffe38 X-VCS-Branch: master Date: Wed, 4 Jan 2017 00:11:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ef1351af-8cd4-4662-86cc-238b32f3daae X-Archives-Hash: 73d7c4214ea7d297d495520f0da554b4 commit: 6cdbff3a7571e3e814fded0774e9b48cdcbffe38 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Jan 3 05:36:08 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Jan 3 05:36:08 2017 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=6cdbff3a Add quiet_genkernel to make quieter boot. The kernel boot option 'quiet' makes both the kernel & genkernel boot quietly. The new kernel boot option 'quiet_genkernel' just makes genkernel boot quietly, while not affecting the kernel verbosity. Fixes: https://bugs.gentoo.org/show_bug.cgi?id=474472 Signed-off-by: Robin H. Johnson gentoo.org> defaults/linuxrc | 2 +- doc/genkernel.8.txt | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/defaults/linuxrc b/defaults/linuxrc index 965d28f..d09b96f 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -119,7 +119,7 @@ do dobtrfs*) USE_BTRFS=1 ;; - quiet) + quiet|quiet_genkernel) QUIET=1 ;; # Debug Options diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt index ca8eff0..dafa25b 100644 --- a/doc/genkernel.8.txt +++ b/doc/genkernel.8.txt @@ -551,10 +551,14 @@ recognized by the kernel itself. switch_root into "/" instead of "/". is "/newroot" (or "/union") usually. -*quiet*:: +*quiet_genkernel*:: Do not print anything but error and warning messages during the execution of the initramfs init scripts. +*quiet*:: + Implies *quiet_genkernel*, but also recognized by the kernel to + suppress kernel messages. + *debug*:: Drop into a debug shell early in the process.