diff options
-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 |