summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-10-18 06:54:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-10-18 06:54:14 +0000
commitfd1828130f2a8f64f6ee63e0070246122327338e (patch)
tree6f47bc181e6ec99b1b88bed821c4132154dd9bfa /perl-install/fs
parentda680711a624dd2bf483272d8df5722327ac21d5 (diff)
downloaddrakx-backup-do-not-use-fd1828130f2a8f64f6ee63e0070246122327338e.tar
drakx-backup-do-not-use-fd1828130f2a8f64f6ee63e0070246122327338e.tar.gz
drakx-backup-do-not-use-fd1828130f2a8f64f6ee63e0070246122327338e.tar.bz2
drakx-backup-do-not-use-fd1828130f2a8f64f6ee63e0070246122327338e.tar.xz
drakx-backup-do-not-use-fd1828130f2a8f64f6ee63e0070246122327338e.zip
separate hpfs and ntfs entries (even if they both use the same type id in partition table) (bugzilla #19322)
(and also remove the special ppc case which is useless inside a /^i.86|x86_64/ condition)
Diffstat (limited to 'perl-install/fs')
-rw-r--r--perl-install/fs/type.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 87fb01476..5412eb1b8 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -78,7 +78,8 @@ if_(arch() =~ /ppc/,
0x03 => '', 'XENIX usr',
0x04 => 'vfat', 'FAT16 <32M',
0x06 => 'vfat', 'FAT16',
- 0x07 => (arch() =~ /^ppc/ ? 'hpfs' : 'ntfs'), 'NTFS (or HPFS)',
+ 0x07 => 'ntfs', 'NTFS',
+ 0x07 => 'hpfs', 'HPFS',
0x08 => '', 'AIX',
),
0x09 => '', 'AIX bootable',