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 4E5F0138359 for ; Mon, 24 Aug 2020 20:28:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6442AE0828; Mon, 24 Aug 2020 20:28:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49977E0828 for ; Mon, 24 Aug 2020 20:28:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06182340D33 for ; Mon, 24 Aug 2020 20:28:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6958231C for ; Mon, 24 Aug 2020 20:28:11 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1598300753.f81f1204372a833a491ef0bcab1b6b3cc81f75d9.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: f81f1204372a833a491ef0bcab1b6b3cc81f75d9 X-VCS-Branch: master Date: Mon, 24 Aug 2020 20:28:11 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0fc381ea-321b-406b-bd17-99ee7642cc32 X-Archives-Hash: 9b42b62295234a65c3ac68b0e1d3bfcb commit: f81f1204372a833a491ef0bcab1b6b3cc81f75d9 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Aug 24 20:25:53 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Aug 24 20:25:53 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f81f1204 defaults/linuxrc: Hide first output until cmdline was parsed This will make us honor QUIET kernel command-line argument and allow full silent boot. Link: https://forums.gentoo.org/viewtopic-t-1117988.html Signed-off-by: Thomas Deutschmann gentoo.org> defaults/linuxrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/linuxrc b/defaults/linuxrc index e0704f7..9793fde 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -51,8 +51,6 @@ gk_ver="$(cat /etc/build_id)" gk_build_date="$(cat /etc/build_date)" kernel_ver="$(uname -r)" -good_msg "${gk_ver} (${gk_build_date}). Linux kernel ${kernel_ver}" - if [ "$0" = '/init' ] then [ -e /linuxrc ] && run rm /linuxrc @@ -466,6 +464,8 @@ then fi fi +good_msg "${gk_ver} (${gk_build_date}). Linux kernel ${kernel_ver}" + if [ "${GK_BOOTFONT_DISABLED}" = '0' -a -e /lib/console/font ] then hash setfont >/dev/null 2>&1 && run setfont /lib/console/font -C ${CONSOLE} 2>&1