mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
umbim: auto retry when bringup fails
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45555 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4ed2b35d86
commit
2549c08bb2
@ -19,7 +19,7 @@ proto_mbim_init_config() {
|
||||
proto_config_add_string password
|
||||
}
|
||||
|
||||
proto_mbim_setup() {
|
||||
_proto_mbim_setup() {
|
||||
local interface="$1"
|
||||
local tid=2
|
||||
local ret
|
||||
@ -140,6 +140,20 @@ proto_mbim_setup() {
|
||||
ubus call network add_dynamic "$(json_dump)"
|
||||
}
|
||||
|
||||
proto_mbim_setup() {
|
||||
local ret
|
||||
|
||||
_proto_mbim_setup $@
|
||||
ret=$?
|
||||
|
||||
[ "$ret" = 0 ] || {
|
||||
logger "mbim bringup failed, retry in 15s"
|
||||
sleep 15
|
||||
}
|
||||
|
||||
return $rt
|
||||
}
|
||||
|
||||
proto_mbim_teardown() {
|
||||
local interface="$1"
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user