From: Ray Strode Date: Fri, 13 Mar 2009 14:08:15 +0000 (-0400) Subject: Support "splash" in addition to "rhgb" on kernel command line X-Git-Tag: 0.7.0~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7357a90cfafc24dc49fa5646a15cce65ff47d35;p=thirdparty%2Fplymouth.git 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" --- 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