bcm53xx: add workaround for Netgear R8000 network
[openwrt-github/.git] / target / linux / bcm53xx / base-files / etc / board.d / 02_network
index 4263615e837c7338f4e6c935d4fd100c907d0043..a164251c6a85a1b4c2f21e353c574ca9fbc58e83 100755 (executable)
@@ -9,6 +9,9 @@ board_config_update
 
 board=$(cat /proc/device-tree/compatible | tr '\0' '\t' | cut -f 1)
 case "$board" in
+asus,rt-ac87u)
+       ifname=eth1
+       ;;
 netgear,r8000)
        ifname=eth2
        ;;
@@ -17,10 +20,27 @@ netgear,r8000)
        ;;
 esac
 
+# Workaround for devices using eth2
+case "$board" in
+netgear,r8000)
+       ifname=eth0
+       ;;
+esac
+
 ucidef_set_interface_loopback
 ucidef_set_interfaces_lan_wan "$ifname.1" "$ifname.2"
 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"
+       board_config_flush
+       exit 0
+       ;;
+esac
+
 # NVRAM entries may contain unsorted ports, e.g. Netgear R6250 uses
 # vlan1ports=3 2 1 0 5*
 # vlan2ports=4 5u
@@ -32,6 +52,10 @@ 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"
+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"
 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"