From: Colin Guthrie Date: Thu, 15 Dec 2011 10:35:07 +0000 (+0000) Subject: main: Also show splash for 'splash=silent' arguments (which is what we use in Mageia) X-Git-Tag: 0.8.4^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=032a30c489ad658bd03b4145806da2f989db2c7e;p=thirdparty%2Fplymouth.git main: Also show splash for 'splash=silent' arguments (which is what we use in Mageia) --- diff --git a/src/main.c b/src/main.c index 9565a3e7..e4223b7e 100644 --- a/src/main.c +++ b/src/main.c @@ -755,6 +755,12 @@ plymouth_should_show_default_splash (state_t *state) return true; } + if (command_line_has_argument (state->kernel_command_line, "splash=silent")) + { + ply_trace ("using default splash because kernel command line has option \"splash=slient\""); + return true; + } + ply_trace ("no default splash because kernel command line lacks \"splash\" or \"rhgb\""); return false; }