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/Xconfig | |
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/Xconfig')
-rw-r--r-- | perl-install/Xconfig/various.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/various.pm b/perl-install/Xconfig/various.pm index 1ce1ce37e..c1997fb5a 100644 --- a/perl-install/Xconfig/various.pm +++ b/perl-install/Xconfig/various.pm @@ -132,7 +132,7 @@ sub configure_FB_TVOUT { require fsedit; require detect_devices; my $all_hds = $::isInstall ? $::o->{all_hds} : fsedit::get_hds(); - my $bootloader = $::isInstall ? $::o->{bootloader} : bootloader::read(fs::get::fstab($all_hds)); + my $bootloader = $::isInstall ? $::o->{bootloader} : bootloader::read($all_hds); if (my $tvout = bootloader::duplicate_kernel_entry($bootloader, 'TVout')) { $tvout->{append} .= " XFree=tvout"; |