diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-10-30 20:14:54 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-10-30 20:14:54 +0000 |
commit | 4233ae8e0b7b1e0ad8e437ce98e501a72cfe9de0 (patch) | |
tree | 1c1b8afe33a732e57cc80c0e4dcb6a301502ec9a /perl-install | |
parent | bc767954c9a3bfd68759f34f666c4e3faf154910 (diff) | |
download | drakx-4233ae8e0b7b1e0ad8e437ce98e501a72cfe9de0.tar drakx-4233ae8e0b7b1e0ad8e437ce98e501a72cfe9de0.tar.gz drakx-4233ae8e0b7b1e0ad8e437ce98e501a72cfe9de0.tar.bz2 drakx-4233ae8e0b7b1e0ad8e437ce98e501a72cfe9de0.tar.xz drakx-4233ae8e0b7b1e0ad8e437ce98e501a72cfe9de0.zip |
test existence of /usr/share/bootsplash/scripts/make-boot-splash
file instead of install status of bootsplash package to enable vga
in bootloader
(package check is not working during upgrade on x86_64)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 33dcef642..b622ca666 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -203,7 +203,7 @@ sub setupBootloaderBefore { ); #- propose the default fb mode for kernel fb, if bootsplash is installed. - my $need_fb = $do_pkgs->are_installed('bootsplash'); + my $need_fb = -e "$::prefix/usr/share/bootsplash/scripts/make-boot-splash"; bootloader::suggest($bootloader, $all_hds, vga_fb => ($force_vga || $vga && $need_fb) && $vga_fb, quiet => $quiet); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index da078896b..354a21bdb 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,8 @@ +- test existence of /usr/share/bootsplash/scripts/make-boot-splash + file instead of install status of bootsplash package to enable vga + in bootloader + (package check is not working during upgrade on x86_64) + Version 12.75 - 30 October 2009 - bootloader suggestion fixes (to fix removal of vga= option when |