summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps.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
commita2226ee44c296ff022c3da1bb199e8670823e12d (patch)
tree7af30a97e180b87b072aba5082a04db1cde6eded /perl-install/install/steps.pm
parent469d93a7cee081dbe4fea460eed7c07cd9d9d174 (diff)
downloaddrakx-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/install/steps.pm')
-rw-r--r--perl-install/install/steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm
index 968f076f1..4d9e2a0c3 100644
--- a/perl-install/install/steps.pm
+++ b/perl-install/install/steps.pm
@@ -754,7 +754,7 @@ sub read_bootloader_config {
sub setupBootloaderBefore {
my ($o) = @_;
any::setupBootloaderBefore($o->do_pkgs, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{keyboard},
- $o->{allowFB}, $o->{vga}, $o->{meta_class} ne 'server');
+ $o->{allowFB}, $o->{vga}, $o->{meta_class} ne 'server', $o->{meta_class} ne 'server');
}
sub setupBootloader {