diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 4ea3d8225..33a6caaa4 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,8 @@ o added support for drakroam authentication (#29566). - changed X server restart routing not to rely on ctrl-alt-del (#49059). - fixed a typo in list_modules for virtio modules +- diskdrake: + o updated list of filesystems not handling bad blocks checking Version 12.18 - 25 March 2009 diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 990920ab7..3bf2e6a44 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -1192,7 +1192,7 @@ sub format_ { if ($::isStandalone) { fs::format::check_package_is_installed_format($in->do_pkgs, $part->{fs_type}) or return; } - if ($::expert && !member($part->{fs_type}, 'reiserfs', 'xfs')) { + if ($::expert && !member($part->{fs_type}, 'reiserfs', 'reiser4', 'xfs', 'hfs', 'ntfs', 'ntfs-3g')) { $part->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check bad blocks?")); } $part->{isFormatted} = 0; #- force format; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ff0236af2..d18a41198 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- update list of filesystems not handling bad blocks checking + Version 12.19 - 26 March 2009 - adjust partition size suggestion |