summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/diskdrake/interactive.pm2
-rw-r--r--perl-install/install/NEWS2
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 3c12898e2..be9649934 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- diskdrake:
+ o do not offer to check for bad blocks on btrfs (mga#12393)
- drakboot:
o allow installing grub2 on XFS /
o make clear grub2 is installed on ESP under UEFI
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 8453bac93..edf2c4215 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -1303,7 +1303,7 @@ sub format_ {
sub _format_raw {
my ($in, $part, $all_hds, $o_skip) = @_;
- if ($::expert && !member($part->{fs_type}, qw(hfs ntfs ntfs-3g reiserfs xfs))) {
+ if ($::expert && !member($part->{fs_type}, qw(btrfs hfs ntfs ntfs-3g reiserfs xfs))) {
$part->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check for bad blocks?"));
}
$part->{isFormatted} = 0; #- force format;
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index c44aa3e28..df937fbd6 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,8 @@
o allow installing grub2 on XFS /
o make clear grub2 is installed on ESP under UEFI
o make sure we only offer lilo/grub choice on upgrades only
+- partionning:
+ o do not offer to check for bad blocks on btrfs (mga#12393)
- summary:
o add help link for sound (mga#11824)