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 41071138335 for ; Fri, 1 Mar 2019 06:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0589EE085D; Fri, 1 Mar 2019 06:00:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D0FD3E085D for ; Fri, 1 Mar 2019 06:00:23 +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 36FAF335CEE for ; Fri, 1 Mar 2019 06:00:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80639266 for ; Fri, 1 Mar 2019 06:00:19 +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: <1551419915.93f00250b4596e7f04959485c139bea92e77da2c.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/initrd.defaults X-VCS-Directories: defaults/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 93f00250b4596e7f04959485c139bea92e77da2c X-VCS-Branch: master Date: Fri, 1 Mar 2019 06:00:19 +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: 407b1cb9-ad67-468e-a1d6-b139478b9a8e X-Archives-Hash: cfd6f4d09698a17683ed3cd2deb08f25 commit: 93f00250b4596e7f04959485c139bea92e77da2c Author: Louis Sautier gmail com> AuthorDate: Sat Jan 5 01:07:12 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri Mar 1 05:58:35 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=93f00250 Don't set QUIET=1 by default, fixes login-remote.sh messages QUIET should not be enabled by default, otherwise login-remote.sh will be quiet and lack messages like "LUKS device /dev/xxx opened". Signed-off-by: Robin H. Johnson gentoo.org> defaults/initrd.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults index 2bf14f4..6a3b792 100755 --- a/defaults/initrd.defaults +++ b/defaults/initrd.defaults @@ -52,7 +52,7 @@ KMINOR=`echo $KV | cut -f2 -d.` KVER="${KMAJOR}.${KMINOR}" MISCOPTS='debug detect' -QUIET='1' +QUIET='' ROOT_LINKS='bin sbin lib lib32 lib64 boot usr opt emul' ROOT_TREES='etc root home var'