diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-07 16:08:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-07 16:08:41 +0000 |
commit | 0bc655c8b88c9a2c92db66dc8b259c56ec53ee49 (patch) | |
tree | 8e42cc5a29d8ffed9f62f0766cebc1fcdc97fc34 /perl-install/any.pm | |
parent | 231ceccbb97bb1f62c223cc5bf33046f67f1021b (diff) | |
download | drakx-0bc655c8b88c9a2c92db66dc8b259c56ec53ee49.tar drakx-0bc655c8b88c9a2c92db66dc8b259c56ec53ee49.tar.gz drakx-0bc655c8b88c9a2c92db66dc8b259c56ec53ee49.tar.bz2 drakx-0bc655c8b88c9a2c92db66dc8b259c56ec53ee49.tar.xz drakx-0bc655c8b88c9a2c92db66dc8b259c56ec53ee49.zip |
pass --splash <resolution> to mkinitrd
(so that make-boot-splash doesn't rely on lilo.conf or menu.lst)
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 07afd58c8..8592edc43 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -361,7 +361,7 @@ if_(arch() !~ /sparc|ppc|ia64/, $e->{label} = "$prefix-$nb"; } $Modify->($e) or return; - push @{$b->{entries}}, $e; + bootloader::add_entry($b, $e); $e; }; |