diff options
Diffstat (limited to 'perl-install/fs/partitioning.pm')
-rw-r--r-- | perl-install/fs/partitioning.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/fs/partitioning.pm b/perl-install/fs/partitioning.pm index ab2b6733a..b93d146b2 100644 --- a/perl-install/fs/partitioning.pm +++ b/perl-install/fs/partitioning.pm @@ -1,4 +1,4 @@ -package fs::partitioning; # $Id$ +package fs::partitioning; use diagnostics; use strict; @@ -45,14 +45,14 @@ sub choose_partitions_to_format { $in->ask_from_( { messages => N("Choose the partitions you want to format"), interactive_help_id => 'formatPartitions', - advanced_messages => N("Check bad blocks?"), + advanced_messages => N("Check for bad blocks?"), }, [ map { my $e = $_; ({ text => partition_table::description($e), type => 'bool', val => \$e->{toFormatTmp} - }, if_(!isLoopback($_) && !member($_->{fs_type}, 'reiserfs', 'xfs', 'jfs'), { + }, if_(!isLoopback($_) && isBlockCheckable($_), { text => partition_table::description($e), type => 'bool', advanced => 1, disabled => sub { !$e->{toFormatTmp} }, val => \$e->{toFormatCheck} |