diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-05 15:47:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-05 15:47:41 +0000 |
commit | 975a721c5c91fdc06e459fb84642241c103b50c8 (patch) | |
tree | a3dd1f2d710c715e9444ca5de58120065528937d /perl-install/bootloader.pm | |
parent | 9bae65d7a789a0db04209a13d79848688d8580ae (diff) | |
download | drakx-975a721c5c91fdc06e459fb84642241c103b50c8.tar drakx-975a721c5c91fdc06e459fb84642241c103b50c8.tar.gz drakx-975a721c5c91fdc06e459fb84642241c103b50c8.tar.bz2 drakx-975a721c5c91fdc06e459fb84642241c103b50c8.tar.xz drakx-975a721c5c91fdc06e459fb84642241c103b50c8.zip |
- fix resizing/formatting ntfs, and create "Windows" entry in bootloader
(broken because of ntfs-3g switch in previous release)
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 1c0136379..d873d5eaa 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1008,7 +1008,7 @@ sub suggest { log::l("found the following files on potential windows partition $_->{device}: " . join(' ', @root_files)); intersection(\@root_files, [ "windows", "winnt" ]); } - grep { isFat_or_NTFS($_) && member(fs::type::fs_type_from_magic($_), 'vfat', 'ntfs') + grep { isFat_or_NTFS($_) && member(fs::type::fs_type_from_magic($_), 'vfat', 'ntfs', 'ntfs-3g') && fs::type::part2type_name($_) !~ /^Hidden/; } map { @{$_->{primary}{normal}} } @{$all_hds->{hds}}; |