diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-07 13:18:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-07 13:18:04 +0000 |
commit | 277e64ea8925b628addad26086769a1d85a9927c (patch) | |
tree | ac44544917df886d6249c1293730331d3ca90d8b /perl-install/fs | |
parent | 4e37eb267fbd30a4a40a32f2e9f8bca476a72612 (diff) | |
download | drakx-277e64ea8925b628addad26086769a1d85a9927c.tar drakx-277e64ea8925b628addad26086769a1d85a9927c.tar.gz drakx-277e64ea8925b628addad26086769a1d85a9927c.tar.bz2 drakx-277e64ea8925b628addad26086769a1d85a9927c.tar.xz drakx-277e64ea8925b628addad26086769a1d85a9927c.zip |
- do not configure "windows" bootloader entries for "hidden" partitions
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 40e3db41e..71995af77 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -87,9 +87,9 @@ if_(arch() =~ /ppc/, 0x16 => '', 'Hidden FAT16', 0x17 => 'ntfs', 'Hidden HPFS/NTFS', 0x18 => '', 'AST SmartSleep', - 0x1b => 'vfat', 'Hidden W95 FAT32', - 0x1c => 'vfat', 'Hidden W95 FAT32 (LBA)', - 0x1e => 'vfat', 'Hidden W95 FAT16 (LBA)', + 0x1b => 'vfat', 'Hidden W95 FAT32', # \ + 0x1c => 'vfat', 'Hidden W95 FAT32 (LBA)', # > don't change label, it's used to know if it's not a boot partition in bootloader.pm + 0x1e => 'vfat', 'Hidden W95 FAT16 (LBA)', # / 0x24 => '', 'NEC DOS', 0x39 => '', 'Plan 9', 0x3c => '', 'PartitionMagic recovery', |