diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-01-05 16:57:52 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-01-05 16:57:52 +0000 |
commit | 743f3306895bfb0da0062f6f1db7031fc2f23de7 (patch) | |
tree | cd94e3589645010c8fd2d7c3928cf3ca5c4a16a7 /perl-install/diskdrake/hd_gtk.pm | |
parent | 74076cc2c94e5bf7fea146b4a7ac2e09169d7d0b (diff) | |
download | drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.gz drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.bz2 drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.xz drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.zip |
- ext4dev is now stable and called ext4 in 2.6.28+
Diffstat (limited to 'perl-install/diskdrake/hd_gtk.pm')
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index a6a904589..0aac21bbc 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -339,7 +339,7 @@ sub create_buttons4partitions { last; } }); - my @colorized_fs_types = qw(ext3 ext4dev xfs swap vfat ntfs ntfs-3g); + my @colorized_fs_types = qw(ext3 ext4 xfs swap vfat ntfs ntfs-3g); $w->set_name("PART_" . (isEmpty($entry) ? 'empty' : $entry->{fs_type} && member($entry->{fs_type}, @colorized_fs_types) ? $entry->{fs_type} : 'other')); @@ -378,7 +378,7 @@ sub hd2kind { sub filesystems_button_box() { my @types = (N_("Ext3"), N_("XFS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("Windows"), N_("Other"), N_("Empty")); - my %name2fs_type = (Ext3 => 'ext3', Ext4 => 'ext4dev', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs'); + my %name2fs_type = (Ext3 => 'ext3', Ext4 => 'ext4', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs'); gtkpack(Gtk2::HBox->new(), map { |