summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2011-12-15 10:35:07 +0000
committerRay Strode <rstrode@redhat.com>2012-03-21 10:36:30 -0400
commit032a30c489ad658bd03b4145806da2f989db2c7e (patch)
tree4457434b89821b2c4296a032be4ab7403974a6cf
parentb8f2e2b11f219e72fdef924b1f259628fa56e5a9 (diff)
main: Also show splash for 'splash=silent' arguments (which is what we use in Mageia)0.8.4
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
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;
}