Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45556
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
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"