diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-03-11 16:00:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-03-11 16:00:44 +0000 |
commit | 633800e3c3c1e2771ea1f2fbf0745cec9e600aa4 (patch) | |
tree | de646ab3e5783a9db0f55230a5f101a2194631b9 /perl-install/any.pm | |
parent | 891b21bf2c2f5e434493bca814d0fc3ea8dc5118 (diff) | |
download | drakx-633800e3c3c1e2771ea1f2fbf0745cec9e600aa4.tar drakx-633800e3c3c1e2771ea1f2fbf0745cec9e600aa4.tar.gz drakx-633800e3c3c1e2771ea1f2fbf0745cec9e600aa4.tar.bz2 drakx-633800e3c3c1e2771ea1f2fbf0745cec9e600aa4.tar.xz drakx-633800e3c3c1e2771ea1f2fbf0745cec9e600aa4.zip |
fix lilo-menu not working (bug #3048)
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 34bce2ffc..3b3be9378 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -237,7 +237,7 @@ sub setupBootloader__general { my @silo_install_lang = (N("First sector of drive (MBR)"), N("First sector of boot partition")); - ($b->{method}, my $method_choices) = bootloader::method_choices($fstab); + ($b->{method}, my $method_choices) = bootloader::method_choices($fstab, $b); my $profiles = bootloader::has_profiles($b); my $prev_force_acpi = my $force_acpi = bootloader::get_append($b, 'acpi') ne 'off'; my $prev_force_noapic = my $force_noapic = bootloader::get_append($b, 'noapic'); |