diff options
author | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2018-02-07 13:23:26 +0100 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-02-13 10:01:53 +0100 |
commit | 3c5471032b9a32a44ee8f5f5b726401fe9eb81e5 (patch) | |
tree | 097a498bfd7871c647ef25d9cf45953909923fa5 /package/network/utils/uqmi | |
parent | 192b5a7710a47c235295101776a61996865968ca (diff) | |
download | upstream-3c5471032b9a32a44ee8f5f5b726401fe9eb81e5.tar.gz upstream-3c5471032b9a32a44ee8f5f5b726401fe9eb81e5.tar.bz2 upstream-3c5471032b9a32a44ee8f5f5b726401fe9eb81e5.zip |
uqmi: use general method for state cleaning
Debugging shows that using the general method properly cleans on each
run, while the method specifying the client-ID shows "No effect"
even while in connected state.
Fixes several connectivity issues seen on specific modems.
Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'package/network/utils/uqmi')
-rwxr-xr-x | package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh index 1619c2b35e..eba0922e57 100755 --- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh +++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh @@ -97,6 +97,10 @@ proto_qmi_setup() { } } + # Cleanup current state if any + uqmi -s -d "$device" --stop-network 0xffffffff --autoconnect + + # Set IP format uqmi -s -d "$device" --set-data-format 802.3 uqmi -s -d "$device" --wda-set-data-format 802.3 dataformat="$(uqmi -s -d "$device" --wda-get-data-format)" @@ -144,11 +148,6 @@ proto_qmi_setup() { uqmi -s -d "$device" --set-client-id wds,"$cid_4" --set-ip-family ipv4 > /dev/null - # try to clear previous autoconnect state - uqmi -s -d "$device" --set-client-id wds,"$cid_4" \ - --stop-network 0xffffffff \ - --autoconnect > /dev/null - pdh_4=$(uqmi -s -d "$device" --set-client-id wds,"$cid_4" \ --start-network \ ${apn:+--apn $apn} \ @@ -175,11 +174,6 @@ proto_qmi_setup() { uqmi -s -d "$device" --set-client-id wds,"$cid_6" --set-ip-family ipv6 > /dev/null - # try to clear previous autoconnect state - uqmi -s -d "$device" --set-client-id wds,"$cid_6" \ - --stop-network 0xffffffff \ - --autoconnect > /dev/null - pdh_6=$(uqmi -s -d "$device" --set-client-id wds,"$cid_6" \ --start-network \ ${apn:+--apn $apn} \ |