diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-05-02 23:42:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-05-02 23:42:08 +0000 |
commit | 0ac2e5eb18fa2468e906f1835773d8d839ffa9fe (patch) | |
tree | 263f77f4d73741fb1a0a905dae3b4c8ad994ecda /perl-install/any.pm | |
parent | 74084f09177bcabe7981c8f04639d1d44431704c (diff) | |
download | drakx-0ac2e5eb18fa2468e906f1835773d8d839ffa9fe.tar drakx-0ac2e5eb18fa2468e906f1835773d8d839ffa9fe.tar.gz drakx-0ac2e5eb18fa2468e906f1835773d8d839ffa9fe.tar.bz2 drakx-0ac2e5eb18fa2468e906f1835773d8d839ffa9fe.tar.xz drakx-0ac2e5eb18fa2468e906f1835773d8d839ffa9fe.zip |
no_comment
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index bd7098285..61ad2d7ec 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -75,6 +75,9 @@ sub setupBootloader { #- at least one method grep_each { $::b } %{$b->{methods}} or return; + #- put lilo if grub is chosen, so that /etc/lilo.conf is generated + exists $b->{methods}{lilo} and $b->{methods}{lilo} = 1 if $b->{methods}{grub}; + my @l = ( _("Boot device") => { val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } @$hds, @$fstab), detect_devices::floppies() ], not_edit => !$::expert }, _("LBA (doesn't work on old BIOSes)") => { val => \$b->{lba32}, type => "bool", text => "lba" }, |