diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/fs/mount_options.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index d22827785..843fb6835 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,7 @@ - drakboot o do not crash b/c ext4 was forbidden for /boot (#47853) +- diskdrake + o really don't set extents option for ext4 Version 11.88 - 16 February 2009 diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index f8336b70c..9e3f5e767 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -229,9 +229,6 @@ sub set_default { 'iocharset=' => $opts{iocharset}, 'codepage=' => $opts{codepage}, }); } - if ($part->{fs_type} =~ /^ext4(dev)?$/) { - put_in_hash($options, { extents => 1 }); - } if ($part->{fs_type} eq 'ntfs') { put_in_hash($options, { ro => 1, 'nls=' => $opts{iocharset}, 'umask=0' => $opts{security} < 3, 'umask=0022' => $opts{security} < 4, diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5fdf10b37..685b54893 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - enable having /boot as ext4 +- don't set extents option for ext4 Version 11.88.1 - 16 February 2009 |