aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/bcm53xx
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-02 18:51:12 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-02 18:51:12 +0000
commit6b3f5638eff6ad8861473430504281a266cf69b6 (patch)
treeb5e68373a5d26fe0b8b70f0febf6797ab4439f6a /target/linux/bcm53xx
parent1f3ad2bde105e5ef2c4a2a203127afed443c89a8 (diff)
downloadmaster-187ad058-6b3f5638eff6ad8861473430504281a266cf69b6.tar.gz
master-187ad058-6b3f5638eff6ad8861473430504281a266cf69b6.tar.bz2
master-187ad058-6b3f5638eff6ad8861473430504281a266cf69b6.zip
bcm53xx: switch to ucidef_add_switch_ports()
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47692 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/bcm53xx')
-rwxr-xr-xtarget/linux/bcm53xx/base-files/etc/board.d/02_network20
1 files changed, 10 insertions, 10 deletions
diff --git a/target/linux/bcm53xx/base-files/etc/board.d/02_network b/target/linux/bcm53xx/base-files/etc/board.d/02_network
index a164251c6a..338e71134c 100755
--- a/target/linux/bcm53xx/base-files/etc/board.d/02_network
+++ b/target/linux/bcm53xx/base-files/etc/board.d/02_network
@@ -34,8 +34,8 @@ ucidef_add_switch "switch0" "1" "1"
# Workaround for devices using CPU port 8 (connected to eth2)
case "$board" in
netgear,r8000)
- ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
- ucidef_add_switch_vlan "switch0" "2" "4 5t"
+ ucidef_add_switch_ports "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5t@$ifname"
board_config_flush
exit 0
;;
@@ -50,19 +50,19 @@ vlan1ports="$(echo $(nvram get vlan1ports | tr " " "\n" | sort))"
vlan2ports="$(echo $(nvram get vlan2ports | tr " " "\n" | sort))"
if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
echo "$vlan2ports" | egrep -q "^0 5"; then
- ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
- ucidef_add_switch_vlan "switch0" "2" "0 5t"
+ ucidef_add_switch_ports "switch0" \
+ "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5t@$ifname"
elif echo "$vlan1ports" | egrep -q "^1 2 3 5 7" && \
echo "$vlan2ports" | egrep -q "^0 7"; then
- ucidef_add_switch_vlan "switch0" "1" "1 2 3 5 7t"
- ucidef_add_switch_vlan "switch0" "2" "0 7t"
+ ucidef_add_switch_ports "switch0" \
+ "1:lan" "2:lan" "3:lan" "5:lan" "0:wan" "7t@$ifname"
elif echo "$vlan1ports" | egrep -q "^0 1 2 3 5 7 8" && \
echo "$vlan2ports" | egrep -q "^4 8"; then
- ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5 7 8t"
- ucidef_add_switch_vlan "switch0" "2" "4 8t"
+ ucidef_add_switch_ports "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "5:lan" "7:lan" "4:wan" "8t@$ifname"
else
- ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
- ucidef_add_switch_vlan "switch0" "2" "4 5t"
+ ucidef_add_switch_ports "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5t@$ifname"
fi
board_config_flush