diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-16 15:04:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-16 15:04:42 +0000 |
commit | f638b544f3b2ffe568f581f0225760ef6cc31d92 (patch) | |
tree | bdd8938cb89ab00f0424f5a685b74d3ed78f45f5 /package/iproute2/files | |
parent | 83948d6385c9ce23545a159ffd64f5b2854332ed (diff) | |
download | upstream-f638b544f3b2ffe568f581f0225760ef6cc31d92.tar.gz upstream-f638b544f3b2ffe568f581f0225760ef6cc31d92.tar.bz2 upstream-f638b544f3b2ffe568f581f0225760ef6cc31d92.zip |
iproute2: Add hotplug script to add slave devices to TEQL master
Resolves https://dev.openwrt.org/ticket/11192
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
SVN-Revision: 31311
Diffstat (limited to 'package/iproute2/files')
-rw-r--r-- | package/iproute2/files/30-teql | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/iproute2/files/30-teql b/package/iproute2/files/30-teql new file mode 100644 index 0000000000..231c09fa7b --- /dev/null +++ b/package/iproute2/files/30-teql @@ -0,0 +1,23 @@ +#!/bin/sh + +. /etc/functions.sh + +if [ "$ACTION" != "ifup" ]; then + exit +fi + +config_load network + +config_get teql $INTERFACE teql + +if [ "$teql" != "" ]; then + logger Adding device $DEVICE to TEQL master $teql + insmod sch_teql + tc qdisc add dev $DEVICE root $teql + + # The kernel doesn't let us bring it up until it has at least one + # slave. So bring it up now, if it isn't already. + if ! cat /sys/class/net/$teql/carrier &>/dev/null; then + ifup $teql & + fi +fi |