diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-10 17:27:33 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-12 22:55:01 +0200 |
commit | 012092f339a35e884a511a9a46837210aec208ff (patch) | |
tree | d630c7b08864dd0f5065bd3ffe4f7a2609c4a12c /perl-install/partition_table.pm | |
parent | 12ed7fa3856e828100e8ced0a52800fb37124fff (diff) | |
download | drakx-012092f339a35e884a511a9a46837210aec208ff.tar drakx-012092f339a35e884a511a9a46837210aec208ff.tar.gz drakx-012092f339a35e884a511a9a46837210aec208ff.tar.bz2 drakx-012092f339a35e884a511a9a46837210aec208ff.tar.xz drakx-012092f339a35e884a511a9a46837210aec208ff.zip |
don't guess a drive letter for ESP partitions
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index d376de621..39c029899 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -133,11 +133,11 @@ sub assign_device_numbers { #- first verify there's at least one primary dos partition, otherwise it #- means it is a secondary disk and all will be false :( #- - my ($c, @others) = grep { isFat_or_NTFS($_) } @{$hd->{primary}{normal}}; + my ($c, @others) = grep { isnormal_Fat_or_NTFS($_) } @{$hd->{primary}{normal}}; $i = ord 'C'; $c->{device_windobe} = chr($i++) if $c; - $_->{device_windobe} = chr($i++) foreach grep { isFat_or_NTFS($_) && !isRecovery($_) } map { $_->{normal} } @{$hd->{extended}}; + $_->{device_windobe} = chr($i++) foreach grep { isnormal_Fat_or_NTFS($_) } map { $_->{normal} } @{$hd->{extended}}; $_->{device_windobe} = chr($i++) foreach @others; } |