aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-10-02 12:55:35 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-10-04 10:17:05 +0200
commitc07a3832dd87e1501420a4f902d8c3b0f57e24d6 (patch)
tree315319f94c03b35649e93eaef13ed7c406e41dfc /cli/mmcli.c
parent715a7759491b3c7c716ffbf768a2ece222b23fb1 (diff)
cli: new `--firmware-list' and `--firmware-select' actions
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r--cli/mmcli.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c
index b05df9bc..8e81452f 100644
--- a/cli/mmcli.c
+++ b/cli/mmcli.c
@@ -206,6 +206,8 @@ main (gint argc, gchar **argv)
g_option_context_add_group (context,
mmcli_modem_time_get_option_group ());
g_option_context_add_group (context,
+ mmcli_modem_firmware_get_option_group ());
+ g_option_context_add_group (context,
mmcli_sim_get_option_group ());
g_option_context_add_group (context,
mmcli_bearer_get_option_group ());
@@ -315,6 +317,13 @@ main (gint argc, gchar **argv)
else
mmcli_modem_time_run_synchronous (connection);
}
+ /* Modem Firmware options? */
+ else if (mmcli_modem_firmware_options_enabled ()) {
+ if (async_flag)
+ mmcli_modem_firmware_run_asynchronous (connection, cancellable);
+ else
+ mmcli_modem_firmware_run_synchronous (connection);
+ }
/* Modem options?
* NOTE: let this check be always the last one, as other groups also need
* having a modem specified, and therefore if -m is set, modem options
@@ -349,6 +358,8 @@ main (gint argc, gchar **argv)
mmcli_modem_messaging_shutdown ();
} else if (mmcli_modem_time_options_enabled ()) {
mmcli_modem_time_shutdown ();
+ } else if (mmcli_modem_firmware_options_enabled ()) {
+ mmcli_modem_firmware_shutdown ();
} else if (mmcli_sim_options_enabled ()) {
mmcli_sim_shutdown ();
} else if (mmcli_bearer_options_enabled ()) {