Skip to content
Snippets Groups Projects
Commit 3f0f0b8e authored by John Crispin's avatar John Crispin
Browse files

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: default avatarMatti Laakso <malaakso@elisanet.fi>

SVN-Revision: 44629
parent dfb9e7c3
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
[ "$ACTION" = add ] || exit 0 [ "$ACTION" = add ] || [ "$ACTION" = remove ] || exit 0
[ "${DEVNAME/[0-9]/}" = cdc-wdm ] || exit 0 [ "${DEVNAME/[0-9]/}" = cdc-wdm ] || exit 0
. /lib/functions.sh . /lib/functions.sh
...@@ -13,11 +13,13 @@ find_wwan_iface() { ...@@ -13,11 +13,13 @@ find_wwan_iface() {
config_get proto "$cfg" proto config_get proto "$cfg" proto
config_get device "$cfg" device 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 [ -z "$device" -a "$proto" = wwan ] || [ "$device" = "/dev/$DEVNAME" ] || return 0
if [ "$ACTION" = add ]; then
proto_set_available "$cfg" 1 proto_set_available "$cfg" 1
ifup "$cfg" else
proto_set_available "$cfg" 0
fi
exit 0 exit 0
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment