From: John Crispin Date: Thu, 11 Sep 2014 12:26:41 +0000 (+0000) Subject: umbim: update to latest git X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=d031d371263cb3a458722d73fce73b508b533746 umbim: update to latest git adds handling for username/password Signed-off-by: John Crispin SVN-Revision: 42466 --- diff --git a/package/network/utils/umbim/Makefile b/package/network/utils/umbim/Makefile index f0868cebf8..b463a6de43 100644 --- a/package/network/utils/umbim/Makefile +++ b/package/network/utils/umbim/Makefile @@ -1,13 +1,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=umbim -PKG_VERSION:=2014-08-26 +PKG_VERSION:=2014-09-09 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://git.openwrt.org/project/umbim.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=7741d88cdfd36f0c4380f660a9ad7109df76b432 +PKG_SOURCE_VERSION:=4ae19ab4fcdd70dbfc8c303d752502f2da5a7e75 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=John Crispin diff --git a/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh b/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh index c93ba331df..3cc7412e6b 100755 --- a/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh +++ b/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh @@ -11,6 +11,9 @@ proto_mbim_init_config() { proto_config_add_string apn proto_config_add_string pincode proto_config_add_string delay + proto_config_add_string auth + proto_config_add_string username + proto_config_add_string password } proto_mbim_setup() { @@ -19,7 +22,7 @@ proto_mbim_setup() { local ret local device apn pincode delay - json_get_vars device apn pincode delay + json_get_vars device apn pincode delay auth username password [ -n "$device" ] || { logger -p daemon.err -t "mbim[$$]" "No control device specified" @@ -40,7 +43,6 @@ proto_mbim_setup() { return 1 } - [ -n "$delay" ] && sleep "$delay" logger -p daemon.info -t "mbim[$$]" "Reading capabilities" @@ -100,7 +102,7 @@ proto_mbim_setup() { tid=$((tid + 1)) logger -p daemon.info -t "mbim[$$]" "Connect to network" - while ! umbim $DBG -n -t $tid -d $device connect "$apn"; do + while ! umbim $DBG -n -t $tid -d $device connect "$apn" "$auth" "$username" "$password"; do tid=$((tid + 1)) sleep 1; done