From: Ray Strode Date: Wed, 24 Mar 2010 20:43:19 +0000 (-0400) Subject: [client] add hide-splash and show-splash subcommands X-Git-Tag: 0.8.1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=544f5bae0a783dc45eedd2465f2199cce61ae6d8;p=thirdparty%2Fplymouth.git [client] add hide-splash and show-splash subcommands This is to replace the old style --hide-splash and --show-splash options. --- diff --git a/src/client/plymouth.c b/src/client/plymouth.c index 69c9277e..c424b57b 100644 --- a/src/client/plymouth.c +++ b/src/client/plymouth.c @@ -771,6 +771,28 @@ on_update_root_fs_request (state_t *state, } } +static void +on_show_splash_request (state_t *state, + const char *command) +{ + ply_boot_client_tell_daemon_to_show_splash (state->client, + (ply_boot_client_response_handler_t) + on_success, + (ply_boot_client_response_handler_t) + on_failure, state); +} + +static void +on_hide_splash_request (state_t *state, + const char *command) +{ + ply_boot_client_tell_daemon_to_hide_splash (state->client, + (ply_boot_client_response_handler_t) + on_success, + (ply_boot_client_response_handler_t) + on_failure, state); +} + int main (int argc, char **argv) @@ -817,6 +839,18 @@ main (int argc, PLY_COMMAND_OPTION_TYPE_FLAG, NULL); + ply_command_parser_add_command (state.command_parser, + "show-splash", "Tell daemon to show splash screen", + (ply_command_handler_t) + on_show_splash_request, &state, + NULL); + + ply_command_parser_add_command (state.command_parser, + "hide-splash", "Tell daemon to hide splash screen", + (ply_command_handler_t) + on_hide_splash_request, &state, + NULL); + ply_command_parser_add_command (state.command_parser, "ask-for-password", "Ask user for password", (ply_command_handler_t)