summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/bootloader.pm2
-rw-r--r--perl-install/install/NEWS1
3 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index dd331c57d..7cfc637c5 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- bootloader:
+ o allow btrfs for / without separate /boot with grub2 (mga#15374)
- partitioning wizard:
o do not offer to select RAID as it result in a crash (mga#5800)
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index afd4d78ec..914217add 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -2055,7 +2055,7 @@ sub install {
if (my $part = fs::get::device2part($bootloader->{boot}, [ fs::get::fstab($all_hds) ])) {
die N("You cannot install the bootloader on a %s partition\n", $part->{fs_type})
- if member($part->{fs_type}, qw(btrfs xfs));
+ if member($part->{fs_type}, qw(xfs));
}
$bootloader->{keytable} = keytable($bootloader->{keytable});
action($bootloader, 'install', $all_hds);
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 28019289f..2a18978c6 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,6 +1,7 @@
- bootloader:
o add 'noiswmd' to kernel command line to manage isw_ bios
fakeraids with dmraid for now (instead of mdadm)
+ o allow btrfs for / without separate /boot with grub2 (mga#15374)
- partitioning wizard:
o do not offer to select RAID as it result in a crash (mga#5800)