diff options
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index c26992258..dfa8f306a 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -48,7 +48,7 @@ my $bootloader = bootloader::read($all_hds); if (!$bootloader) { $in->ask_okcancel('', N("No bootloader found, creating a new configuration"), 0) or $in->exit; bootloader::suggest($bootloader ||= {}, $all_hds, - vga_fb => listlength(cat_("/proc/fb")), + vga_fb => first($cmdline =~ /\bvga=(\S+)/), #- don't use $1 here, otherwise perl will hit you because of the other "=~" below quiet => $cmdline =~ /\bsplash=silent\b/, ); } |