mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-21 03:55:06 +00:00
umbim: update to latest git
adds handling for username/password Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 42466
This commit is contained in:
parent
7bad68804c
commit
c9d15fbd59
@ -1,13 +1,13 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=umbim
|
PKG_NAME:=umbim
|
||||||
PKG_VERSION:=2014-08-26
|
PKG_VERSION:=2014-09-09
|
||||||
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL:=git://git.openwrt.org/project/umbim.git
|
PKG_SOURCE_URL:=git://git.openwrt.org/project/umbim.git
|
||||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
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_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
||||||
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
||||||
|
|
||||||
|
@ -11,6 +11,9 @@ proto_mbim_init_config() {
|
|||||||
proto_config_add_string apn
|
proto_config_add_string apn
|
||||||
proto_config_add_string pincode
|
proto_config_add_string pincode
|
||||||
proto_config_add_string delay
|
proto_config_add_string delay
|
||||||
|
proto_config_add_string auth
|
||||||
|
proto_config_add_string username
|
||||||
|
proto_config_add_string password
|
||||||
}
|
}
|
||||||
|
|
||||||
proto_mbim_setup() {
|
proto_mbim_setup() {
|
||||||
@ -19,7 +22,7 @@ proto_mbim_setup() {
|
|||||||
local ret
|
local ret
|
||||||
|
|
||||||
local device apn pincode delay
|
local device apn pincode delay
|
||||||
json_get_vars device apn pincode delay
|
json_get_vars device apn pincode delay auth username password
|
||||||
|
|
||||||
[ -n "$device" ] || {
|
[ -n "$device" ] || {
|
||||||
logger -p daemon.err -t "mbim[$$]" "No control device specified"
|
logger -p daemon.err -t "mbim[$$]" "No control device specified"
|
||||||
@ -40,7 +43,6 @@ proto_mbim_setup() {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
[ -n "$delay" ] && sleep "$delay"
|
[ -n "$delay" ] && sleep "$delay"
|
||||||
|
|
||||||
logger -p daemon.info -t "mbim[$$]" "Reading capabilities"
|
logger -p daemon.info -t "mbim[$$]" "Reading capabilities"
|
||||||
@ -100,7 +102,7 @@ proto_mbim_setup() {
|
|||||||
tid=$((tid + 1))
|
tid=$((tid + 1))
|
||||||
|
|
||||||
logger -p daemon.info -t "mbim[$$]" "Connect to network"
|
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))
|
tid=$((tid + 1))
|
||||||
sleep 1;
|
sleep 1;
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user