From a2226ee44c296ff022c3da1bb199e8670823e12d Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Mon, 19 Mar 2012 18:33:40 +0000 Subject: - 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 --- perl-install/bootloader.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/bootloader.pm') 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') { -- cgit v1.2.1