diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/any.pm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 005e29205..277feac2a 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -809,13 +809,12 @@ sub rpmsrate_always_flags { sub default_bootloader() { my $p; - # we only support grub2-efi on UEFI: if (is_uefi()) { - log::l("selecting grub2-efi because it's needed for UEFI boot"); - $p = 'grub2-efi'; + log::l("defaulting to grub2-efi"); + $p = 'grub2-efi'; } else { - log::l("defaulting to grub"); - $p = 'grub2'; + log::l("defaulting to grub2"); + $p = 'grub2'; } [ $p ]; } |