diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-01-08 20:32:13 +0159 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-01-08 20:32:13 +0159 |
commit | c1060c87f25482e565d28eb6fe59de9ef1a58fb8 (patch) | |
tree | fd83629eeb1f8f5843724bce2fa01e9a5a06b524 /perl-install | |
parent | 73c30d928f6b53b727f92455c66c7aa83405b910 (diff) | |
download | drakx-c1060c87f25482e565d28eb6fe59de9ef1a58fb8.tar drakx-c1060c87f25482e565d28eb6fe59de9ef1a58fb8.tar.gz drakx-c1060c87f25482e565d28eb6fe59de9ef1a58fb8.tar.bz2 drakx-c1060c87f25482e565d28eb6fe59de9ef1a58fb8.tar.xz drakx-c1060c87f25482e565d28eb6fe59de9ef1a58fb8.zip |
group fs types using same arch() check
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/type.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 3fba231f0..e4071e35c 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -25,13 +25,9 @@ my (%type_name2pt_type, %type_name2fs_type, %fs_type2pt_type, %pt_type2fs_type, 0x83 => 'ext4', 'Journalised FS: ext4', 0x83 => 'btrfs', 'Journalised FS: Btrfs', 0x83 => 'reiserfs', 'Journalised FS: ReiserFS', -if_(arch() =~ /i.86|x86_64/, +if_(arch() =~ /i.86|x86_64/, 0x83 => 'xfs', 'Journalised FS: XFS', -), -if_(arch() =~ /i.86|x86_64/, 0x83 => 'jfs', 'Journalised FS: JFS', -), -if_(arch() =~ /i.86|x86_64/, 0x0b => 'vfat', 'FAT32', 0x07 => 'ntfs-3g', 'NTFS-3G', 0x07 => 'ntfs', 'NTFS', |