diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-08-16 14:28:42 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-09-09 10:20:40 +0200 |
commit | 7751f2d6ed0a4afeb7330ae9262c949e76ce14b2 (patch) | |
tree | d7de7d630c1ac4344dfdabd610af0a578e91aa36 /cli/mmcli.c | |
parent | 03dc346adde7e00af1c6f08b05f40fd01250089f (diff) |
mmcli,oma: support for the new OMA interface
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r-- | cli/mmcli.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c index d3427e51..aeb1bd42 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -211,6 +211,8 @@ main (gint argc, gchar **argv) g_option_context_add_group (context, mmcli_modem_signal_get_option_group ()); g_option_context_add_group (context, + mmcli_modem_oma_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 ()); @@ -334,6 +336,13 @@ main (gint argc, gchar **argv) else mmcli_modem_signal_run_synchronous (connection); } + /* Modem Oma options? */ + else if (mmcli_modem_oma_options_enabled ()) { + if (async_flag) + mmcli_modem_oma_run_asynchronous (connection, cancellable); + else + mmcli_modem_oma_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 @@ -372,6 +381,8 @@ main (gint argc, gchar **argv) mmcli_modem_firmware_shutdown (); } else if (mmcli_modem_signal_options_enabled ()) { mmcli_modem_signal_shutdown (); + } else if (mmcli_modem_oma_options_enabled ()) { + mmcli_modem_oma_shutdown (); } else if (mmcli_sim_options_enabled ()) { mmcli_sim_shutdown (); } else if (mmcli_bearer_options_enabled ()) { |