From 267008cd21da4efb85dec0702bbbd7d5d7dddd4e Mon Sep 17 00:00:00 2001 From: Frederic Crozat Date: Tue, 1 Sep 2009 18:36:11 +0200 Subject: [PATCH] [daemon] splash=verbose is equivalent to no splash (splashy compatibility) --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index ba4ade3d..a92e11f2 100644 --- a/src/main.c +++ b/src/main.c @@ -562,7 +562,7 @@ plymouth_should_show_default_splash (state_t *state) } } - return strstr (state->kernel_command_line, "rhgb") != NULL || strstr (state->kernel_command_line, "splash") != NULL; + return strstr (state->kernel_command_line, "rhgb") != NULL || (strstr (state->kernel_command_line, "splash") != NULL && strstr(state->kernel_command_line, "splash=verbose") == NULL); } static void -- 2.47.3