From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6B85B138200 for ; Sun, 9 Jun 2013 08:31:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DAB0E07D7; Sun, 9 Jun 2013 08:31:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72172E07D7 for ; Sun, 9 Jun 2013 08:31:08 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CDA233E2DB for ; Sun, 9 Jun 2013 08:31:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 26E2BE530A for ; Sun, 9 Jun 2013 08:31:06 +0000 (UTC) From: "Richard Yao" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Yao" Message-ID: <1370762176.54ff7805ae6f5ed6f83542d2edb2996dfd751de4.ryao@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_bootloader.sh X-VCS-Directories: / X-VCS-Committer: ryao X-VCS-Committer-Name: Richard Yao X-VCS-Revision: 54ff7805ae6f5ed6f83542d2edb2996dfd751de4 X-VCS-Branch: master Date: Sun, 9 Jun 2013 08:31:06 +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: 1ee0431b-b694-4697-8a3b-0ee30ae51f09 X-Archives-Hash: cbb8d57b1c2e5441ab0b53da5317910f Message-ID: <20130609083106.mHxVSWDe9obAxm9eX2l4O6HK3KelNz1GrvEePV4cq1Q@z> commit: 54ff7805ae6f5ed6f83542d2edb2996dfd751de4 Author: Richard Yao gentoo org> AuthorDate: Thu Jun 6 03:06:12 2013 +0000 Commit: Richard Yao gentoo org> CommitDate: Sun Jun 9 07:16:16 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=54ff7805 Suppress grub2-mkconfig output Every other tool that we run has its output suppressed, so lets be consistent. Signed-off-by: Richard Yao gentoo.org> --- gen_bootloader.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_bootloader.sh b/gen_bootloader.sh index 5848bd2..c695cea 100755 --- a/gen_bootloader.sh +++ b/gen_bootloader.sh @@ -50,7 +50,7 @@ set_bootloader_grub2() { print_info 1 "You can customize Grub2 parameters in /etc/default/grub." print_info 1 "Running grub2-mkconfig to create ${GRUB_CONF}..." - grub2-mkconfig -o "${GRUB_CONF}" + grub2-mkconfig -o "${GRUB_CONF}" 2> /dev/null [ "${BUILD_RAMDISK}" -ne 0 ] && sed -i 's/ro single/ro debug/' "${GRUB_CONF}" }