diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-08 08:13:53 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-09 06:24:59 -0400 |
commit | 5efbf00cc1845b67ac7d4a03b9a75ecf18e50004 (patch) | |
tree | ca76c2caa5f9194fa9648bcf9e18c3cd64c2a381 /perl-install/partition_table.pm | |
parent | 41ad14f0c866402ecae82f2a08e04f1f7b57b7a3 (diff) | |
download | drakx-5efbf00cc1845b67ac7d4a03b9a75ecf18e50004.tar drakx-5efbf00cc1845b67ac7d4a03b9a75ecf18e50004.tar.gz drakx-5efbf00cc1845b67ac7d4a03b9a75ecf18e50004.tar.bz2 drakx-5efbf00cc1845b67ac7d4a03b9a75ecf18e50004.tar.xz drakx-5efbf00cc1845b67ac7d4a03b9a75ecf18e50004.zip |
don't guess a drive letter for recovery partitions
thus fixing mga15636
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index be54d6c31..d376de621 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -137,7 +137,7 @@ sub assign_device_numbers { $i = ord 'C'; $c->{device_windobe} = chr($i++) if $c; - $_->{device_windobe} = chr($i++) foreach grep { isFat_or_NTFS($_) } map { $_->{normal} } @{$hd->{extended}}; + $_->{device_windobe} = chr($i++) foreach grep { isFat_or_NTFS($_) && !isRecovery($_) } map { $_->{normal} } @{$hd->{extended}}; $_->{device_windobe} = chr($i++) foreach @others; } |