mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-07 17:48:01 +02:00
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"
This commit is contained in:
parent
a0f63466b9
commit
b7357a90cf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue