mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-08 17:08:35 +02:00
[daemon] splash=verbose is equivalent to no splash (splashy compatibility)
This commit is contained in:
parent
4539abfba2
commit
267008cd21
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue