diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/bootloader.pm | 1 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 8cf35630b..1adb23681 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -9,6 +9,8 @@ - harddrake: o do not display bogus "0" ids for hard disks o fix detecting some mice +- bootloader: + o do not add removable drives as "Windows" entry in bootloader Version 12.78 - 18 November 2009 diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index fabd82a8f..8a5bcaba4 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1075,6 +1075,7 @@ sub suggest { my @windows_boot_parts = grep { $_->{active} && isFat_or_NTFS($_) && member(fs::type::fs_type_from_magic($_), 'vfat', 'ntfs', 'ntfs-3g') + && !$_->{is_removable} && !isRecovery($_); } map { @{$_->{primary}{normal}} } @{$all_hds->{hds}}; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index df4dcce44..42cf8ed51 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -11,6 +11,8 @@ (breaks install if the Win partition is the installer media) - do not stay chdired in /mnt/var/cache/urpmi when download fails (workaround urpmi bug) +- bootloader: + o do not add removable drives as "Windows" entry in bootloader Version 12.77 - 30 October 2009 |