diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-04-28 01:55:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-04-28 01:55:59 +0000 |
commit | f016148bfe188b14a0f73345a0096e2543c95d89 (patch) | |
tree | 36e49cad370097b08074ddc70204eeafdef22b2b /perl-install | |
parent | b415ea0d3202378cf47c5b7fc9c82f081e9c7f72 (diff) | |
download | drakx-f016148bfe188b14a0f73345a0096e2543c95d89.tar drakx-f016148bfe188b14a0f73345a0096e2543c95d89.tar.gz drakx-f016148bfe188b14a0f73345a0096e2543c95d89.tar.bz2 drakx-f016148bfe188b14a0f73345a0096e2543c95d89.tar.xz drakx-f016148bfe188b14a0f73345a0096e2543c95d89.zip |
*** empty log message ***
Diffstat (limited to 'perl-install')
-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 0676dfcb4..3cef33e29 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -316,7 +316,7 @@ sub adjust_main_extended($) { } $l->{start} = $hd->{primary}{extended}{start} = $start; $l->{size} = $hd->{primary}{extended}{size} = $end - $start; - $hd->{primary}{extended}{type} = 0x85 if $only_linux && !$::expert; + $hd->{primary}{extended}{type} = $only_linux ? 0x85 : 0x5 if !$::expert; } unless (@{$hd->{extended} || []} || !$hd->{primary}{extended}) { %{$hd->{primary}{extended}} = (); #- modify the raw entry |