[openwrt/openwrt] uqmi: set device-operating-mode to online

LEDE Commits lede-commits at lists.infradead.org
Sun Nov 22 16:59:13 EST 2020


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/ce293cd3ac3a594d536dc4243e85434fa503265b

commit ce293cd3ac3a594d536dc4243e85434fa503265b
Author: Filip Moc <lede at moc6.cz>
AuthorDate: Wed Nov 18 20:37:17 2020 +0100

    uqmi: set device-operating-mode to online
    
    This is required for LTE module MR400 (in TL-MR6400 v4).
    Otherwise LTE module won't register to GSM network.
    
    Signed-off-by: Filip Moc <lede at moc6.cz>
---
 package/network/utils/uqmi/Makefile                      | 2 +-
 package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/package/network/utils/uqmi/Makefile b/package/network/utils/uqmi/Makefile
index 4a15a15c19..428d697fdf 100644
--- a/package/network/utils/uqmi/Makefile
+++ b/package/network/utils/uqmi/Makefile
@@ -1,7 +1,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=uqmi
-PKG_RELEASE:=8
+PKG_RELEASE:=9
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=$(PROJECT_GIT)/project/uqmi.git
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 a77523cd40..13a4fc9611 100755
--- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh
+++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh
@@ -174,6 +174,9 @@ proto_qmi_setup() {
 	# Cleanup current state if any
 	uqmi -s -d "$device" --stop-network 0xffffffff --autoconnect > /dev/null 2>&1
 
+	# Go online
+	uqmi -s -d "$device" --set-device-operating-mode online > /dev/null 2>&1
+
 	# Set IP format
 	uqmi -s -d "$device" --set-data-format 802.3 > /dev/null 2>&1
 	uqmi -s -d "$device" --wda-set-data-format 802.3 > /dev/null 2>&1



More information about the lede-commits mailing list