diff options
Diffstat (limited to 'package/switch/files/switch.sh')
| -rw-r--r-- | package/switch/files/switch.sh | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/package/switch/files/switch.sh b/package/switch/files/switch.sh index f0bd8ce60..6517ca985 100644 --- a/package/switch/files/switch.sh +++ b/package/switch/files/switch.sh @@ -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() { | 
