X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/b48013b35bcda1979506c8761c56282f1ec741e1..9bbe7731c60aa44fd23e461ace2a80f2a923e7e8:/package/switch/files/switch.sh diff --git a/package/switch/files/switch.sh b/package/switch/files/switch.sh index 708ca85e8..2563d410e 100644 --- a/package/switch/files/switch.sh +++ b/package/switch/files/switch.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2010 OpenWrt.org setup_switch_hw() { local dev="$1" @@ -11,10 +11,17 @@ setup_switch_hw() { local proc="/proc/switch/$dev" [ -d "$proc" ] && { + ifconfig "$dev" up echo "$reset" > "$proc/reset" echo "$evlan" > "$proc/enable_vlan" - echo "$enable" > "$proc/enable" + [ -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() {