Skip to content
Snippets Groups Projects
Commit f03226af authored by John Crispin's avatar John Crispin
Browse files

uqmi: auto retry when bringup fails


Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>

SVN-Revision: 45556
parent acf74d9b
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ qmi_wds_release() {
uci_revert_state network $interface cid
}
proto_qmi_setup() {
_proto_qmi_setup() {
local interface="$1"
local device apn auth username password pincode delay modes cid pdh
......@@ -132,6 +132,20 @@ proto_qmi_setup() {
ubus call network add_dynamic "$(json_dump)"
}
proto_qmi_setup() {
local ret
_proto_qmi_setup $@
ret=$?
[ "$ret" = 0 ] || {
logger "qmi bringup failed, retry in 15s"
sleep 15
}
return $rt
}
proto_qmi_teardown() {
local interface="$1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment