diff options
author | Yves Duret <yduret@mandriva.com> | 2001-05-07 22:13:22 +0000 |
---|---|---|
committer | Yves Duret <yduret@mandriva.com> | 2001-05-07 22:13:22 +0000 |
commit | eb1d93cc5f3efd2c24306a9094ae4160f2ed645a (patch) | |
tree | 9d83cc8fd9df107c28c8297f510b6fe93f0177e5 /perl-install/any.pm | |
parent | 05862528180ab602887067526a2fe01d33d4011f (diff) | |
download | drakx-eb1d93cc5f3efd2c24306a9094ae4160f2ed645a.tar drakx-eb1d93cc5f3efd2c24306a9094ae4160f2ed645a.tar.gz drakx-eb1d93cc5f3efd2c24306a9094ae4160f2ed645a.tar.bz2 drakx-eb1d93cc5f3efd2c24306a9094ae4160f2ed645a.tar.xz drakx-eb1d93cc5f3efd2c24306a9094ae4160f2ed645a.zip |
updated install_lilo() according to new lilo package
(/boot/lilo-{menu,graphic,text})
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 8de921fea..a1a2da268 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -127,13 +127,13 @@ sub setupBootloader { my %bootloaders = (if_(exists $b->{methods}{silo}, __("SILO") => sub { $b->{methods}{silo} = 1 }), if_(exists $b->{methods}{lilo}, - __("LILO with text menu") => sub { $b->{methods}{lilo} = "boot-menu.b" }, - __("LILO with graphical menu") => sub { $b->{methods}{lilo} = "boot-graphic.b" }), + __("LILO with text menu") => sub { $b->{methods}{lilo} = "lilo-menu" }, + __("LILO with graphical menu") => sub { $b->{methods}{lilo} = "lilo-graphic" }), if_(exists $b->{methods}{grub}, #- put lilo if grub is chosen, so that /etc/lilo.conf is generated __("Grub") => sub { $b->{methods}{grub} = 1; exists $b->{methods}{lilo} - and $b->{methods}{lilo} = "boot-menu.b" }), + and $b->{methods}{lilo} = "lilo-menu" }), if_(exists $b->{methods}{loadlin}, __("Boot from DOS/Windows (loadlin)") => sub { $b->{methods}{loadlin} = 1 }), if_(exists $b->{methods}{yaboot}, |