diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-10-26 15:29:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-10-26 15:29:33 +0000 |
commit | 150b8ceb722bdbd393f6237a62eddffbbd7c64b6 (patch) | |
tree | b30d618ea3beed82353cfcdf6403b9074c6f139b /perl-install/install_steps.pm | |
parent | ef75b17e8aae527ed507a738ba9ab8632c7c1805 (diff) | |
download | drakx-150b8ceb722bdbd393f6237a62eddffbbd7c64b6.tar drakx-150b8ceb722bdbd393f6237a62eddffbbd7c64b6.tar.gz drakx-150b8ceb722bdbd393f6237a62eddffbbd7c64b6.tar.bz2 drakx-150b8ceb722bdbd393f6237a62eddffbbd7c64b6.tar.xz drakx-150b8ceb722bdbd393f6237a62eddffbbd7c64b6.zip |
detectloader must handle specially raid-extra-boot=mbr-only (bugzilla #12089)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 6eb2e0ae7..b35c6d5b8 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -831,7 +831,7 @@ sub readBootloaderConfigBeforeInstall { my ($o) = @_; require bootloader; - add2hash($o->{bootloader} ||= {}, bootloader::read($o->{fstab})); + add2hash($o->{bootloader} ||= {}, bootloader::read($o->{all_hds})); $o->{bootloader}{bootUnsafe} = 0 if $o->{bootloader}{boot}; #- when upgrading, don't ask where to install the bootloader (mbr vs boot partition) } |