summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakboot
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-05-09 11:43:24 +0000
committerOlivier Blin <oblin@mandriva.org>2005-05-09 11:43:24 +0000
commitfeea511f868403e89132aae2adfcaa3f2caff5be (patch)
tree34278d5d7443595e82ab23b4c82195b057ecc718 /perl-install/standalone/drakboot
parent7288042965c351d1902be4cd86aec1e5e59312b4 (diff)
downloaddrakx-feea511f868403e89132aae2adfcaa3f2caff5be.tar
drakx-feea511f868403e89132aae2adfcaa3f2caff5be.tar.gz
drakx-feea511f868403e89132aae2adfcaa3f2caff5be.tar.bz2
drakx-feea511f868403e89132aae2adfcaa3f2caff5be.tar.xz
drakx-feea511f868403e89132aae2adfcaa3f2caff5be.zip
use bootsplash::get_framebuffer_resolution
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-xperl-install/standalone/drakboot17
1 files changed, 5 insertions, 12 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot
index 4953e6b1d..674311067 100755
--- a/perl-install/standalone/drakboot
+++ b/perl-install/standalone/drakboot
@@ -95,18 +95,11 @@ sub run_boot_window {
sub splash_choice() {
require bootsplash;
- require Xconfig::resolution_and_depth;
- my $cur_res;
- my $no_bootsplash;
- if (my $x_res = Xconfig::resolution_and_depth::from_bios($bootloader->{default_vga})) {
- $cur_res = $x_res->{X} . 'x' . $x_res->{Y};
- } else {
- $no_bootsplash = 1 unless $::testing; #- we can not select any theme we're not in Framebuffer mode :-/
- $cur_res = '800x600';
- }
+ my ($cur_res, $bootsplash_available) = bootsplash::get_framebuffer_resolution();
+ $bootsplash_available = 1 if $::testing;
my $theme = bootsplash::themes_read_sysconfig($cur_res);
- $no_bootsplash and $theme->{enabled} = 0;
+ $bootsplash_available or $theme->{enabled} = 0;
my $boot_pic = gtkcreate_img($bootsplash::default_thumbnail);
change_image($boot_pic, $theme->{name}, $cur_res);
@@ -128,7 +121,7 @@ sub splash_choice() {
0, gtksignal_connect(gtkset_active(Gtk2::CheckButton->new(N("Use graphical boot")), $theme->{enabled}),
clicked => sub {
$theme->{enabled} = !$theme->{enabled};
- if ($boot_warn && $no_bootsplash && $theme->{enabled}) {
+ if ($boot_warn && !$bootsplash_available && $theme->{enabled}) {
if ($in->ask_yesorno(N("Warning"),
[ N("Your system bootloader is not in framebuffer mode. To activate graphical boot, select a graphic video mode from the bootloader configuration tool.") . "\n" .
N("Do you want to configure it now?") ])) {
@@ -242,7 +235,7 @@ sub change_image {
}
sub enable_framebuffer() {
- my $vga = Xconfig::resolution_and_depth::from_bios($bootloader->{default_vga});
+ my $vga = bootsplash::get_framebuffer_resolution();
my ($current_entry) = cat_('/proc/cmdline') =~ /^BOOT_IMAGE=(\S+)/;
my %entries = (
$current_entry => 1