diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-07-03 07:22:40 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-07-03 07:22:40 +0200 |
commit | a16ea78775da43c9bd23c91fac21b3b7071e9226 (patch) | |
tree | 4cb605f00b7cc771ed3c1c03ae96e4a12575e2c3 /perl-install/fs | |
parent | 0e91a9c169a06fd6c71129fc7900414113869a5d (diff) | |
download | drakx-a16ea78775da43c9bd23c91fac21b3b7071e9226.tar drakx-a16ea78775da43c9bd23c91fac21b3b7071e9226.tar.gz drakx-a16ea78775da43c9bd23c91fac21b3b7071e9226.tar.bz2 drakx-a16ea78775da43c9bd23c91fac21b3b7071e9226.tar.xz drakx-a16ea78775da43c9bd23c91fac21b3b7071e9226.zip |
improve fs sorting in combo box (mga#13640)
was "misplaced" in commit 58bbc1fb86132ac8ca16bef41fb0e8c91960846f
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 61b1a48dc..3fba231f0 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -20,10 +20,10 @@ my (%type_name2pt_type, %type_name2fs_type, %fs_type2pt_type, %pt_type2fs_type, my @list_types = ( important => [ 0x82 => 'swap', 'Linux swap', - 0x83 => 'btrfs', 'Journalised FS: Btrfs', 0x83 => 'ext2', 'Linux native', 0x83 => 'ext3', 'Journalised FS: ext3', 0x83 => 'ext4', 'Journalised FS: ext4', + 0x83 => 'btrfs', 'Journalised FS: Btrfs', 0x83 => 'reiserfs', 'Journalised FS: ReiserFS', if_(arch() =~ /i.86|x86_64/, 0x83 => 'xfs', 'Journalised FS: XFS', |