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/install/steps.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/install/steps.pm')
-rw-r--r-- | perl-install/install/steps.pm | 2 |
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 { |