main: Also show splash for 'splash=silent' arguments (which is what we use in Mageia)

This commit is contained in:
Colin Guthrie 2011-12-15 10:35:07 +00:00 committed by Ray Strode
parent b8f2e2b11f
commit 032a30c489

View file

@ -755,6 +755,12 @@ plymouth_should_show_default_splash (state_t *state)
return true;
}
if (command_line_has_argument (state->kernel_command_line, "splash=silent"))
{
ply_trace ("using default splash because kernel command line has option \"splash=slient\"");
return true;
}
ply_trace ("no default splash because kernel command line lacks \"splash\" or \"rhgb\"");
return false;
}