* util/grub-install.in (efi_quiet): Fix inverted logic: make
efibootmgr quiet when --debug is not used, rather than when it is.
This commit is contained in:
parent
d743d22de6
commit
11b2a9b70b
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
2013-11-13 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
* gentpl.py (define_macro_for_platform_dependencies): Remove
|
* gentpl.py (define_macro_for_platform_dependencies): Remove
|
||||||
|
|
|
@ -40,7 +40,7 @@ debug_image=
|
||||||
update_nvram=yes
|
update_nvram=yes
|
||||||
|
|
||||||
removable=no
|
removable=no
|
||||||
efi_quiet=
|
efi_quiet=-q
|
||||||
|
|
||||||
# Get GRUB_DISTRIBUTOR.
|
# Get GRUB_DISTRIBUTOR.
|
||||||
if test -f "${sysconfdir}/default/grub" ; then
|
if test -f "${sysconfdir}/default/grub" ; then
|
||||||
|
@ -333,7 +333,7 @@ setup_verbose=
|
||||||
if test x"$debug" = xyes; then
|
if test x"$debug" = xyes; then
|
||||||
set -x
|
set -x
|
||||||
setup_verbose="--verbose"
|
setup_verbose="--verbose"
|
||||||
efi_quiet=-q
|
efi_quiet=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$bootdir" ]; then
|
if [ -z "$bootdir" ]; then
|
||||||
|
|
Loading…
Reference in a new issue