summaryrefslogtreecommitdiffstats
path: root/perl-install/bootloader.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-10-24 15:11:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-10-24 15:11:14 +0000
commit21ba361db26182b0ad557c8c4869e2c3870e3328 (patch)
treee3227b51311a005c1cbc68ca832462c6d95d1fdf /perl-install/bootloader.pm
parentefad0d7f1e0efb1c7d6f8bb49bd7191ecdb59cd3 (diff)
downloaddrakx-backup-do-not-use-21ba361db26182b0ad557c8c4869e2c3870e3328.tar
drakx-backup-do-not-use-21ba361db26182b0ad557c8c4869e2c3870e3328.tar.gz
drakx-backup-do-not-use-21ba361db26182b0ad557c8c4869e2c3870e3328.tar.bz2
drakx-backup-do-not-use-21ba361db26182b0ad557c8c4869e2c3870e3328.tar.xz
drakx-backup-do-not-use-21ba361db26182b0ad557c8c4869e2c3870e3328.zip
- bootloader-config:
o if drakx-kbd-mouse-x11 is not installed, simply don't add bootsplash instead of dying
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r--perl-install/bootloader.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index ae99ad69f..2ca5e061e 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -144,7 +144,7 @@ sub add_boot_splash {
$vga or return;
- require Xconfig::resolution_and_depth;
+ eval { require Xconfig::resolution_and_depth } or return;
if (my $res = Xconfig::resolution_and_depth::from_bios($vga)) {
run_program::rooted($::prefix, '/usr/share/bootsplash/scripts/make-boot-splash', $initrd, $res->{X});
} else {