summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/bootloader.pm4
-rw-r--r--perl-install/install/NEWS2
3 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 9d9037114..31c900156 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- only allow GRUB2 when booting on btrfs
+
Version 16.41 - 31 August 2014
- add packages to wanted_hardware_packages list to prevent them being removed:
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 885c30dfa..7ca1fdbf5 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -1270,8 +1270,8 @@ sub method_choices {
my $have_dmraid = find { fs::type::is_dmraid($_) } @{$all_hds->{hds}};
grep {
- !(/lilo/ && (isLoopback($root_part) || $have_dmraid ||
- $boot_part->{fs_type} eq 'btrfs'))
+ !(/lilo/ && (isLoopback($root_part) || $have_dmraid))
+ && (/grub2/ || $boot_part->{fs_type} ne 'btrfs')
&& !(/grub-graphic/ && cat_("/proc/cmdline") =~ /console=ttyS/);
} method_choices_raw($b_prefix_mounted);
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 86623cd8a..e9a058c67 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- only allow GRUB2 when booting on btrfs
+
Version 16.41 - 31 August 2014
- adapt to latest systemd