diff options
author | John Crispin <blogic@openwrt.org> | 2015-03-09 14:06:30 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-03-09 14:06:30 +0000 |
commit | be85388809d015ffeebda8ca61baf06abc41c4be (patch) | |
tree | b9d27997c216cf7b17f5daebd72b51da1568a589 | |
parent | caaf4ec5de80055a2426a752960c870706b161b5 (diff) | |
download | upstream-be85388809d015ffeebda8ca61baf06abc41c4be.tar.gz upstream-be85388809d015ffeebda8ca61baf06abc41c4be.tar.bz2 upstream-be85388809d015ffeebda8ca61baf06abc41c4be.zip |
wwan: Improve USB modem hotplug script
Adds ncm proto to the list of checked protocols, sets interfaces
unavailable on device removal and removes the unnecessary ifup
command.
Signed-off-by: Matti Laakso <malaakso@elisanet.fi>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44629 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/utils/wwan/files/wwan.usbmisc | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/package/network/utils/wwan/files/wwan.usbmisc b/package/network/utils/wwan/files/wwan.usbmisc index 404a5cc0a6..4079a7fd8f 100644 --- a/package/network/utils/wwan/files/wwan.usbmisc +++ b/package/network/utils/wwan/files/wwan.usbmisc @@ -1,6 +1,6 @@ #!/bin/sh -[ "$ACTION" = add ] || exit 0 +[ "$ACTION" = add ] || [ "$ACTION" = remove ] || exit 0 [ "${DEVNAME/[0-9]/}" = cdc-wdm ] || exit 0 . /lib/functions.sh @@ -13,11 +13,13 @@ find_wwan_iface() { config_get proto "$cfg" proto config_get device "$cfg" device - [ "$proto" = wwan ] || [ "$proto" = mbim ] || [ "$proto" = qmi ] || return 0 + [ "$proto" = wwan ] || [ "$proto" = mbim ] || [ "$proto" = qmi ] || [ "$proto" = ncm ] || return 0 [ -z "$device" -a "$proto" = wwan ] || [ "$device" = "/dev/$DEVNAME" ] || return 0 - - proto_set_available "$cfg" 1 - ifup "$cfg" + if [ "$ACTION" = add ]; then + proto_set_available "$cfg" 1 + else + proto_set_available "$cfg" 0 + fi exit 0 } |