From fd1828130f2a8f64f6ee63e0070246122327338e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 18 Oct 2005 06:54:14 +0000 Subject: 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) --- perl-install/fs/type.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install') 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', -- cgit v1.2.1