Gentoo Archives: gentoo-commits

From: Richard Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/
Date: Sat, 28 Jul 2018 00:55:24
Message-Id: 1532739314.a4f9396cb3d29eab26b0f2dc2c0f173f1011b76f.zerochaos@gentoo
1 commit: a4f9396cb3d29eab26b0f2dc2c0f173f1011b76f
2 Author: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 28 00:55:14 2018 +0000
4 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 00:55:14 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a4f9396c
7
8 mkstandalone is too verbose and we aren't developing this anymore, just let it work quieter
9
10 targets/support/functions.sh | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/targets/support/functions.sh b/targets/support/functions.sh
14 index 01c7e61c..ce43abba 100755
15 --- a/targets/support/functions.sh
16 +++ b/targets/support/functions.sh
17 @@ -108,13 +108,13 @@ create_bootloader() {
18
19 # 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
20 # set up 32 bit uefi
21 - ${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"
22 + ${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"
23 #secure boot shim
24 cp /usr/share/shim/BOOTIA32.EFI boot/EFI/BOOT/
25 cp /usr/share/shim/mmia32.efi boot/EFI/BOOT/
26
27 #set up 64 bit uefi
28 - ${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"
29 + ${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"
30 #secure boot shim
31 cp /usr/share/shim/BOOTX64.EFI boot/EFI/BOOT/
32 cp /usr/share/shim/mmx64.efi boot/EFI/BOOT/