mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-05 22:19:32 +01:00
switch: explicitely clear port mappings in unsused vlans (#7082)
SVN-Revision: 20717
This commit is contained in:
parent
83bf10cb3f
commit
501e154d03
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
PKG_NAME:=kmod-switch
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
@ -15,6 +15,12 @@ setup_switch_hw() {
|
||||
echo "$evlan" > "$proc/enable_vlan"
|
||||
[ -f "$proc/enable" ] && echo "$enable" > "$proc/enable"
|
||||
}
|
||||
|
||||
local vlan
|
||||
for vlan in `seq 0 15`; do
|
||||
proc="/proc/switch/$dev/vlan/$vlan/ports"
|
||||
[ -f "$proc" ] && echo "" > "$proc"
|
||||
done
|
||||
}
|
||||
|
||||
setup_switch_vlan() {
|
||||
|
Loading…
Reference in New Issue
Block a user