summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/any.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 131c6aa87..7c4b841a3 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- fix selecting grub2 on !UEFI
+
Version 17.35 - 7 June 2016
- fix selecting grub2-efi on UEFI (mga#18646)
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index 20fd25bc3..7e843abe0 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -802,7 +802,7 @@ sub default_bootloader() {
$p = 'grub2-efi';
} else {
log::l("defaulting to grub");
- $p = 'grub2-efi';
+ $p = 'grub2';
}
[ $p ];
}