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 B31F5138334 for ; Sat, 28 Jul 2018 00:55:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91686E0823; Sat, 28 Jul 2018 00:55:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 6652DE0823 for ; Sat, 28 Jul 2018 00:55:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 07F5F335C94 for ; Sat, 28 Jul 2018 00:55:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 548E6377 for ; Sat, 28 Jul 2018 00:55:20 +0000 (UTC) From: "Richard Farina" 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 Farina" Message-ID: <1532739314.a4f9396cb3d29eab26b0f2dc2c0f173f1011b76f.zerochaos@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/functions.sh X-VCS-Directories: targets/support/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: a4f9396cb3d29eab26b0f2dc2c0f173f1011b76f X-VCS-Branch: master Date: Sat, 28 Jul 2018 00:55:20 +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: 43f0fd37-ece5-4fe5-8f87-17de384c4312 X-Archives-Hash: 079b21c595f2356f57599ea1ec7f7f1c commit: a4f9396cb3d29eab26b0f2dc2c0f173f1011b76f Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Sat Jul 28 00:55:14 2018 +0000 Commit: Richard Farina gentoo org> CommitDate: Sat Jul 28 00:55:14 2018 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a4f9396c mkstandalone is too verbose and we aren't developing this anymore, just let it work quieter targets/support/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/support/functions.sh b/targets/support/functions.sh index 01c7e61c..ce43abba 100755 --- a/targets/support/functions.sh +++ b/targets/support/functions.sh @@ -108,13 +108,13 @@ create_bootloader() { # some 64 bit machines have 32 bit UEFI, and you might want to boot 32 bit on a 64 bit machine, so we take the safest path and include both # set up 32 bit uefi - ${grubmkstndaln} /boot/grub/grub.cfg=./grub-stub.cfg --compress=xz -O i386-efi -o ./boot/EFI/BOOT/grubia32.efi --themes= -v || die "Failed to make grubia32.efi" + ${grubmkstndaln} /boot/grub/grub.cfg=./grub-stub.cfg --compress=xz -O i386-efi -o ./boot/EFI/BOOT/grubia32.efi --themes= || die "Failed to make grubia32.efi" #secure boot shim cp /usr/share/shim/BOOTIA32.EFI boot/EFI/BOOT/ cp /usr/share/shim/mmia32.efi boot/EFI/BOOT/ #set up 64 bit uefi - ${grubmkstndaln} /boot/grub/grub.cfg=./grub-stub.cfg --compress=xz -O x86_64-efi -o ./boot/EFI/BOOT/grubx64.efi --themes= -v || die "Failed to make grubx64.efi" + ${grubmkstndaln} /boot/grub/grub.cfg=./grub-stub.cfg --compress=xz -O x86_64-efi -o ./boot/EFI/BOOT/grubx64.efi --themes= || die "Failed to make grubx64.efi" #secure boot shim cp /usr/share/shim/BOOTX64.EFI boot/EFI/BOOT/ cp /usr/share/shim/mmx64.efi boot/EFI/BOOT/