comgt/umbim/uqmi: enable RFC 7278 for 3g/4g by default
[openwrt.git] / package / network / utils / uqmi / files / lib / netifd / proto / qmi.sh
index a611878..b416da6 100755 (executable)
@@ -1,8 +1,10 @@
 #!/bin/sh
 
-. /lib/functions.sh
-. ../netifd-proto.sh
-init_proto "$@"
+[ -n "$INCLUDE_ONLY" ] || {
+       . /lib/functions.sh
+       . ../netifd-proto.sh
+       init_proto "$@"
+}
 
 proto_qmi_init_config() {
        available=1
@@ -32,12 +34,14 @@ 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
        json_get_vars device apn auth username password pincode delay modes
 
+       [ -n "$ctl_device" ] && device=$ctl_device
+
        [ -n "$device" ] || {
                echo "No control device specified"
                proto_notify_error "$interface" NO_DEVICE
@@ -85,6 +89,7 @@ proto_qmi_setup() {
        qmi_disconnect
 
        uqmi -s -d "$device" --set-data-format 802.3
+       uqmi -s -d "$device" --wda-set-data-format 802.3
 
        echo "Waiting for network registration"
        while uqmi -s -d "$device" --get-serving-system | grep '"searching"' > /dev/null; do
@@ -113,25 +118,43 @@ proto_qmi_setup() {
        proto_send_update "$interface"
 
        json_init
-       json_add_string name "${interface}_dhcp"
+       json_add_string name "${interface}_4"
        json_add_string ifname "@$interface"
        json_add_string proto "dhcp"
        json_close_object
        ubus call network add_dynamic "$(json_dump)"
 
        json_init
-       json_add_string name "${interface}_dhcpv6"
+       json_add_string name "${interface}_6"
        json_add_string ifname "@$interface"
        json_add_string proto "dhcpv6"
+       json_add_string extendprefix 1
        json_close_object
        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"
 
        local device
        json_get_vars device
+
+       [ -n "$ctl_device" ] && device=$ctl_device
+
        local cid=$(uci_get_state network $interface cid)
 
        echo "Stopping network"
@@ -142,5 +165,6 @@ proto_qmi_teardown() {
        proto_send_update "$interface"
 }
 
-add_protocol qmi
-
+[ -n "$INCLUDE_ONLY" ] || {
+       add_protocol qmi
+}