diff options
author | Martin Schiller <ms@dev.tdt.de> | 2019-08-28 07:24:33 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-11-24 15:18:16 +0000 |
commit | b4b829fe64908d0f8743175e7d3ce05cdb3177d8 (patch) | |
tree | 5e627bc0b7c919179df9f9f7e0e50bcff9c0a079 /package/network/utils/uqmi/Makefile | |
parent | bc64b9c32e00bf398f29f360fd2286d26ef3b7d5 (diff) | |
download | upstream-b4b829fe64908d0f8743175e7d3ce05cdb3177d8.tar.gz upstream-b4b829fe64908d0f8743175e7d3ce05cdb3177d8.tar.bz2 upstream-b4b829fe64908d0f8743175e7d3ce05cdb3177d8.zip |
uqmi: set plmn only if necessary
Setting the plmn to '0' (auto) will implicitly lead to a (delayed)
network re-registration, which could further lead to some timing
related issues in the qmi proto handler.
On the other hand, if you switch back from manual plmn selection
to auto mode you have to set it to '0', because this setting is
permanently "saved" in the wwan module.
Conclusion:
If plmn is configured, check if it's already set euqally in the module.
If so, do nothing. Otherwise set it.
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package/network/utils/uqmi/Makefile')
-rw-r--r-- | package/network/utils/uqmi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/uqmi/Makefile b/package/network/utils/uqmi/Makefile index c892c3f8e8..68958a3729 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:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/uqmi.git |