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/standalone/bootloader-config | |
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/standalone/bootloader-config')
-rwxr-xr-x | perl-install/standalone/bootloader-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/bootloader-config b/perl-install/standalone/bootloader-config index e80133fde..0bcd4d377 100755 --- a/perl-install/standalone/bootloader-config +++ b/perl-install/standalone/bootloader-config @@ -56,7 +56,7 @@ if ($image) { my $all_hds = fsedit::get_hds(); fs::get_info_from_fstab($all_hds); -my $bootloader = bootloader::read([ fs::get::fstab($all_hds) ]) or die "Cannot find a boot loader installed\n"; +my $bootloader = bootloader::read($all_hds) or die "Cannot find a boot loader installed\n"; $action =~ s/-/_/g; |