diff options
author | Michal Mazur <mkm@semihalf.com> | 2020-12-11 14:15:11 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-30 18:40:29 +0000 |
commit | 25ffe4211afa37a68274535d64a12670fd5ceebc (patch) | |
tree | f2e0dbefefdf8979137c40ca5fa39d725f5063ba /cli/mmcli-completion | |
parent | b1dde0aec39089161268452b54ea92737ae00aa5 (diff) |
api,libmm-glib,cli: add command to disable facility lock
Diffstat (limited to 'cli/mmcli-completion')
-rw-r--r-- | cli/mmcli-completion | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/mmcli-completion b/cli/mmcli-completion index c77b9fe3..33398949 100644 --- a/cli/mmcli-completion +++ b/cli/mmcli-completion @@ -70,6 +70,10 @@ _mmcli() COMPREPLY=( $(compgen -W "[response]" -- $cur) ) return 0 ;; + '--3gpp-disable-facility-lock') + COMPREPLY=( $(compgen -W "[FACILITY,CONTROL_KEY]" -- $cur) ) + return 0 + ;; '--cdma-activate') COMPREPLY=( $(compgen -W "[CARRIER]" -- $cur) ) return 0 |