diff options
author | Colin Guthrie <colin@mageia.org> | 2012-03-19 18:33:40 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2012-03-19 18:33:40 +0000 |
commit | a2226ee44c296ff022c3da1bb199e8670823e12d (patch) | |
tree | 7af30a97e180b87b072aba5082a04db1cde6eded /perl-install/bootloader.pm | |
parent | 469d93a7cee081dbe4fea460eed7c07cd9d9d174 (diff) | |
download | drakx-a2226ee44c296ff022c3da1bb199e8670823e12d.tar drakx-a2226ee44c296ff022c3da1bb199e8670823e12d.tar.gz drakx-a2226ee44c296ff022c3da1bb199e8670823e12d.tar.bz2 drakx-a2226ee44c296ff022c3da1bb199e8670823e12d.tar.xz drakx-a2226ee44c296ff022c3da1bb199e8670823e12d.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.pm | 3 |
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') { |