diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-15 03:42:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-15 03:42:51 +0000 |
commit | 416a326f1fc775511cf1eac2c04cca2a69d9961a (patch) | |
tree | a3cc9c232e080e703279ebbf6ce4166cd5a3ef7d /perl-install/bootloader.pm | |
parent | 5b81c7eb49c4756b99d8708849a5bfca00193be8 (diff) | |
download | drakx-backup-do-not-use-416a326f1fc775511cf1eac2c04cca2a69d9961a.tar drakx-backup-do-not-use-416a326f1fc775511cf1eac2c04cca2a69d9961a.tar.gz drakx-backup-do-not-use-416a326f1fc775511cf1eac2c04cca2a69d9961a.tar.bz2 drakx-backup-do-not-use-416a326f1fc775511cf1eac2c04cca2a69d9961a.tar.xz drakx-backup-do-not-use-416a326f1fc775511cf1eac2c04cca2a69d9961a.zip |
make_boot_splash is no good since the same initrd is used with or without vga=,
so call add_boot_splash directly
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index b31c53d81..19ec1eb61 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -125,15 +125,6 @@ sub mkinitrd { -e "$::prefix/$initrd"; } -sub make_boot_splash { - my ($initrd, $vga) = @_; - - if ($vga) { - add_boot_splash($initrd, $vga); - } else { - remove_boot_splash($initrd); - } -} sub remove_boot_splash { my ($initrd) = @_; run_program::rooted($::prefix, '/usr/share/bootsplash/scripts/remove-boot-splash', $initrd); |