diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-10-18 06:54:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-10-18 06:54:14 +0000 |
commit | fd1828130f2a8f64f6ee63e0070246122327338e (patch) | |
tree | 6f47bc181e6ec99b1b88bed821c4132154dd9bfa | |
parent | da680711a624dd2bf483272d8df5722327ac21d5 (diff) | |
download | drakx-fd1828130f2a8f64f6ee63e0070246122327338e.tar drakx-fd1828130f2a8f64f6ee63e0070246122327338e.tar.gz drakx-fd1828130f2a8f64f6ee63e0070246122327338e.tar.bz2 drakx-fd1828130f2a8f64f6ee63e0070246122327338e.tar.xz drakx-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)
-rw-r--r-- | perl-install/fs/type.pm | 3 |
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', |