ソースを参照

umbim: auto retry when bringup fails

Signed-off-by: John Crispin <[email protected]>

SVN-Revision: 45555
John Crispin 10 年 前
コミット
acf74d9b6a
1 ファイル変更15 行追加1 行削除
  1. 15 1
      package/network/utils/umbim/files/lib/netifd/proto/mbim.sh

+ 15 - 1
package/network/utils/umbim/files/lib/netifd/proto/mbim.sh

@@ -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"