]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-install.in (efi_quiet): Fix inverted logic: make
authorColin Watson <cjwatson@ubuntu.com>
Wed, 13 Nov 2013 13:05:39 +0000 (13:05 +0000)
committerColin Watson <cjwatson@ubuntu.com>
Wed, 13 Nov 2013 13:05:39 +0000 (13:05 +0000)
efibootmgr quiet when --debug is not used, rather than when it is.

ChangeLog
util/grub-install.in

index fc78a524065bd438295f85a43882fb0ecbb48205..7f8ea589e4832d1d84bc5c905b9ca644464f0836 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-13  Colin Watson  <cjwatson@ubuntu.com>
+
+       * util/grub-install.in (efi_quiet): Fix inverted logic: make
+       efibootmgr quiet when --debug is not used, rather than when it is.
+
 2013-11-13  Colin Watson  <cjwatson@ubuntu.com>
 
        * gentpl.py (define_macro_for_platform_dependencies): Remove
index 7cd089bfd32fffd1c5096eb936227ba4ed1f1841..4cddf5edad0c8c6a6a89b61f73a5d1e5f4d144dc 100644 (file)
@@ -40,7 +40,7 @@ debug_image=
 update_nvram=yes
 
 removable=no
-efi_quiet=
+efi_quiet=-q
 
 # Get GRUB_DISTRIBUTOR.
 if test -f "${sysconfdir}/default/grub" ; then
@@ -333,7 +333,7 @@ setup_verbose=
 if test x"$debug" = xyes; then
     set -x
     setup_verbose="--verbose"
-    efi_quiet=-q
+    efi_quiet=
 fi
 
 if [ -z "$bootdir" ]; then