diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-06 08:23:24 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-06 08:24:01 +0200 |
commit | c14bb9ab38112837c3e1e0cafcb3b8f19cfba1c0 (patch) | |
tree | 34d1064bc4b1e8cb654c2a734ebca4ca0ed13ef4 /src/op_mode/show_wwan.py | |
parent | 83c064de8870262f848151faea30991a49a619d4 (diff) | |
download | vyos-1x-c14bb9ab38112837c3e1e0cafcb3b8f19cfba1c0.tar.gz vyos-1x-c14bb9ab38112837c3e1e0cafcb3b8f19cfba1c0.zip |
wwan: T3620: op-mode: not all commands supported by all modems - add info message
(cherry picked from commit 10814c4d3360598262e991e4b20768dfcde91d75)
Diffstat (limited to 'src/op_mode/show_wwan.py')
-rwxr-xr-x | src/op_mode/show_wwan.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/op_mode/show_wwan.py b/src/op_mode/show_wwan.py index 249dda2a5..529b5bd0f 100755 --- a/src/op_mode/show_wwan.py +++ b/src/op_mode/show_wwan.py @@ -34,13 +34,17 @@ required = parser.add_argument_group('Required arguments') required.add_argument("--interface", help="WWAN interface name, e.g. wwan0", required=True) def qmi_cmd(device, command, silent=False): - tmp = cmd(f'qmicli --device={device} --device-open-proxy {command}') - tmp = tmp.replace(f'[{cdc}] ', '') - if not silent: - # skip first line as this only holds the info headline - for line in tmp.splitlines()[1:]: - print(line.lstrip()) - return tmp + try: + tmp = cmd(f'qmicli --device={device} --device-open-proxy {command}') + tmp = tmp.replace(f'[{cdc}] ', '') + if not silent: + # skip first line as this only holds the info headline + for line in tmp.splitlines()[1:]: + print(line.lstrip()) + return tmp + except: + print('Command not supported by Modem') + exit(1) if __name__ == '__main__': args = parser.parse_args() |