From b7357a90cfafc24dc49fa5646a15cce65ff47d35 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 13 Mar 2009 10:08:15 -0400 Subject: [PATCH] Support "splash" in addition to "rhgb" on kernel command line We used "rhgb" because that's what Fedora users were used to instinctively removing when graphical boot messes up. This isn't a very intuitive (or very upstream-y) name though. Now we check for "rhgb" or "splash" --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 4c88c840..5655be93 100644 --- a/src/main.c +++ b/src/main.c @@ -491,7 +491,7 @@ plymouth_should_show_default_splash (state_t *state) } } - return strstr (state->kernel_command_line, "rhgb") != NULL; + return strstr (state->kernel_command_line, "rhgb") != NULL || strstr (state->kernel_command_line, "splash") != NULL; } static void