summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-09 03:32:57 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-09 03:32:57 +0000
commit01988a82b1ebfa676cc48c277156954d4f568507 (patch)
tree32b134735f7c4bd9fb21634a435bd49b79a45abd /perl-install/install_steps.pm
parent306bd13f549bf0800d76a6c5b9efee1d7c447b6a (diff)
downloaddrakx-backup-do-not-use-01988a82b1ebfa676cc48c277156954d4f568507.tar
drakx-backup-do-not-use-01988a82b1ebfa676cc48c277156954d4f568507.tar.gz
drakx-backup-do-not-use-01988a82b1ebfa676cc48c277156954d4f568507.tar.bz2
drakx-backup-do-not-use-01988a82b1ebfa676cc48c277156954d4f568507.tar.xz
drakx-backup-do-not-use-01988a82b1ebfa676cc48c277156954d4f568507.zip
fix call to bootloader::read()
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 235bc8753..c07613a9d 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -815,7 +815,7 @@ sub readBootloaderConfigBeforeInstall {
my ($o) = @_;
require bootloader;
- add2hash($o->{bootloader} ||= {}, bootloader::read());
+ add2hash($o->{bootloader} ||= {}, bootloader::read($o->{fstab}));
$o->{bootloader}{bootUnsafe} = 0 if $o->{bootloader}{boot}; #- when upgrading, don't ask where to install the bootloader (mbr vs boot partition)
}