diff options
author | John Crispin <blogic@openwrt.org> | 2014-10-08 08:01:20 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-10-08 08:01:20 +0000 |
commit | 98e716884d9421af03c89637613498b87c69617a (patch) | |
tree | 8675dcb267039fb6b1351ffc59ef910f444a3ca3 /package/network/utils/uqmi | |
parent | f93a2e4c7ed6c1e4f755ce47d68997022ea0010b (diff) | |
download | upstream-98e716884d9421af03c89637613498b87c69617a.tar.gz upstream-98e716884d9421af03c89637613498b87c69617a.tar.bz2 upstream-98e716884d9421af03c89637613498b87c69617a.zip |
wwan: add a generic 3g/4g proto
this proto handler will detect which of 3g, qmi, mbim, ncm or directip you need
for a stick and setup uci automagically
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42837 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/utils/uqmi')
-rwxr-xr-x | package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh index a611878fb6..bdc5f23928 100755 --- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh +++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh @@ -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 @@ -38,6 +40,8 @@ proto_qmi_setup() { 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 @@ -132,6 +136,9 @@ proto_qmi_teardown() { 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 +149,6 @@ proto_qmi_teardown() { proto_send_update "$interface" } -add_protocol qmi - +[ -n "$INCLUDE_ONLY" ] || { + add_protocol qmi +} |