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 | |
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')
-rwxr-xr-x | perl-install/standalone/bootloader-config | 2 | ||||
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 3f3330d82..5babbda57 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -45,7 +45,7 @@ my $all_hds = fsedit::get_hds(); fs::get_raw_hds('', $all_hds); fs::get_info_from_fstab($all_hds); my $fstab = [ fs::get::fstab($all_hds) ]; -my $bootloader = bootloader::read($fstab); +my $bootloader = bootloader::read($all_hds); if (!$in->isa('interactive::gtk') || any { /^--boot$/ } @ARGV) { $::isWizard = 1; |