summaryrefslogtreecommitdiffstats
path: root/perl-install/bootloader.pm
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2012-03-19 18:33:40 +0000
committerColin Guthrie <colin@mageia.org>2012-03-19 18:33:40 +0000
commit91fe91af055548dcedc928236d6ec5e97d843834 (patch)
tree7af30a97e180b87b072aba5082a04db1cde6eded /perl-install/bootloader.pm
parentcb7fbb922185d1475d54cbdb6123d97fd9e80030 (diff)
downloaddrakx-backup-do-not-use-91fe91af055548dcedc928236d6ec5e97d843834.tar
drakx-backup-do-not-use-91fe91af055548dcedc928236d6ec5e97d843834.tar.gz
drakx-backup-do-not-use-91fe91af055548dcedc928236d6ec5e97d843834.tar.bz2
drakx-backup-do-not-use-91fe91af055548dcedc928236d6ec5e97d843834.tar.xz
drakx-backup-do-not-use-91fe91af055548dcedc928236d6ec5e97d843834.zip
- use "splash" on the kernel command line vs. "splash=silent" as per upstream
code (e.g. plymouth, systemd and others) - support the "quiet" kernel command line argument to hide kernel text
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r--perl-install/bootloader.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index 28a21a242..766cd2cf6 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -1057,7 +1057,8 @@ sub suggest {
{
root => $root,
if_($options{vga_fb}, vga => $options{vga_fb}), #- using framebuffer
- if_($options{vga_fb} && $options{quiet}, append => "splash=silent"),
+ if_($options{vga_fb} && $options{splash}, append => "splash"),
+ if_($options{quiet}, append => "quiet"),
});
if ($options{vga_fb} && $e->{label} eq 'linux') {