diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2009-01-14 12:54:02 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2009-01-14 12:54:02 +0000 |
commit | 4a0728d268512461d163026828435174101a7e7d (patch) | |
tree | cf91c6f0c45a8311666f7791d8e73a8ce5a5bcb3 | |
parent | c5c4c090a8dbec1a463605f2de5c91f176f2e3b0 (diff) | |
download | drakx-4a0728d268512461d163026828435174101a7e7d.tar drakx-4a0728d268512461d163026828435174101a7e7d.tar.gz drakx-4a0728d268512461d163026828435174101a7e7d.tar.bz2 drakx-4a0728d268512461d163026828435174101a7e7d.tar.xz drakx-4a0728d268512461d163026828435174101a7e7d.zip |
cleanup
-rw-r--r-- | perl-install/bootloader.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index b7c7d6a5b..d0173e17b 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -161,7 +161,7 @@ sub update_splash { my ($bootloader) = @_; foreach (@{$bootloader->{entries}}) { - bootloader::add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd}; + add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd}; } } @@ -1852,7 +1852,7 @@ sub install { sub ensure_pkg_is_installed { my ($do_pkgs, $bootloader) = @_; - my $main_method = bootloader::main_method($bootloader->{method}); + my $main_method = main_method($bootloader->{method}); if ($main_method eq 'grub' || $main_method eq 'lilo') { $do_pkgs->ensure_binary_is_installed($main_method, $main_method, 1) or return 0; if ($bootloader->{method} eq 'grub-graphic') { |