diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-23 16:19:26 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-23 16:32:22 +0200 |
commit | a10da3c595574b8d8b55a5472439c71d19f68ad9 (patch) | |
tree | 649be945e8ea1e4e9e2de6bd463d934079d96296 /perl-install/any.pm | |
parent | 8ce247d9ea31828bd450707d0ff2d305124d13f1 (diff) | |
download | drakx-a10da3c595574b8d8b55a5472439c71d19f68ad9.tar drakx-a10da3c595574b8d8b55a5472439c71d19f68ad9.tar.gz drakx-a10da3c595574b8d8b55a5472439c71d19f68ad9.tar.bz2 drakx-a10da3c595574b8d8b55a5472439c71d19f68ad9.tar.xz drakx-a10da3c595574b8d8b55a5472439c71d19f68ad9.zip |
UEFI: do not offer to pick the disk
where to install the bootloader (grub2) as we don't give it to
grub2-install, which looks for the ESP anyway
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index d9039c846..8d804cade 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -411,7 +411,7 @@ sub setupBootloader__general { list => \@method_choices, format => \&bootloader::method2text }, if_(arch() !~ /ia64/, { label => N("Boot device"), val => \$b->{boot}, list => \@boot_devices, - format => sub { $boot_devices{$_[0]} } }, + format => sub { $boot_devices{$_[0]} }, disabled => sub { is_uefi() } }, ), { label => N("Main options"), title => 1 }, { label => N("Delay before booting default image"), val => \$b->{timeout} }, |