From 032a30c489ad658bd03b4145806da2f989db2c7e Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Thu, 15 Dec 2011 10:35:07 +0000 Subject: [PATCH] main: Also show splash for 'splash=silent' arguments (which is what we use in Mageia) --- src/main.c | 6 ++++++ 1 file changed, 6 insertions(+) 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; }