summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-01-04 20:08:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-01-04 20:08:27 +0000
commitefe87817fe876b27483b7931fc4ca83f8f513787 (patch)
treebc6706c27b6d5480857fb40a88b9ea73a1e97c4f /openwrt/package/base-files
parent84162d6bae29e44b59a6b9adbb535c7e3fecece6 (diff)
downloadmtk-20170518-efe87817fe876b27483b7931fc4ca83f8f513787.zip
mtk-20170518-efe87817fe876b27483b7931fc4ca83f8f513787.tar.gz
mtk-20170518-efe87817fe876b27483b7931fc4ca83f8f513787.tar.bz2
configure switch at boot time based on vlan*ports
SVN-Revision: 2822
Diffstat (limited to 'openwrt/package/base-files')
-rw-r--r--openwrt/package/base-files/default/etc/hotplug.d/net/10-net10
1 files changed, 9 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
index 0417b39..fb7b128 100644
--- a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
@@ -7,11 +7,19 @@ setup_eth()
iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
/sbin/wifi
}
+ [ -d /proc/switch ] || {
+ insmod switch-core
+ insmod switch-robo || insmod switch-adm
+ }
if="$(echo "$INTERFACE" | sed s,eth,et,)"
ifconfig "$INTERFACE" up 2>&- >&-
for vlan in $(seq 0 15); do
- [ "$(nvram get vlan${vlan}hwname)" = "$if" ] && \
+ [ "$(nvram get vlan${vlan}hwname)" = "$if" ] && {
$DEBUG vconfig add "$INTERFACE" "$vlan"
+ vports="$(nvram get vlan${vlan}ports)"
+ [ \! -z "$vports" -a -d "/proc/switch/$INTERFACE" ] && \
+ echo "$vports" > "/proc/switch/$INTERFACE/vlan/$vlan/ports"
+ }
done
}