1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-20 20:21:30 +03:00
openwrt-xburst/package/comgt/files/3g.usb
jow a3a2e7ee8b [package] comgt: handle ttyHS* devices in usb hotplug, fix typo (#9046)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26175 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-03-15 09:09:05 +00:00

44 lines
752 B
Bash

#!/bin/sh
. /etc/functions.sh
log() {
logger -t 3g-hotplug "$@"
}
find_3g_iface() {
local cfg="$1"
local tty="$2"
local proto
config_get proto "$cfg" proto
[ "$proto" = 3g ] && {
local auto
config_get_bool auto "$cfg" auto 1
[ "$auto" = 1 ] || return 0
local dev
config_get dev "$cfg" device
if [ "${dev##*/}" = "${tty##*/}" ]; then
log "Starting interface $cfg for device ${tty##*/}"
( sleep 1; /sbin/ifup "$cfg" ) &
fi
}
}
if [ "$ACTION" = add ]; then
case "$DEVICENAME" in
*-*:*.*) config_load network;;
*) exit 0;;
esac
local tty
for tty in /sys/$DEVPATH/ttyUSB* /sys/$DEVPATH/tty/ttyACM* /sys/$DEVPATH/tty/ttyHS*; do
[ -d "$tty" ] || continue
config_foreach find_3g_iface interface "$tty"
done
fi