bcm53xx: fix default network interface on Netgear R8000
[openwrt/openwrt.git] / target / linux / bcm53xx / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2011 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults-new.sh
7
8 board_config_update
9
10 board=$(cat /proc/device-tree/compatible | tr '\0' '\t' | cut -f 1)
11 case "$board" in
12 netgear,r8000)
13 ifname=eth2
14 ;;
15 *)
16 ifname=eth0
17 ;;
18 esac
19
20 ucidef_set_interface_loopback
21 ucidef_set_interfaces_lan_wan "$ifname.1" "$ifname.2"
22 ucidef_add_switch "switch0" "1" "1"
23
24 # NVRAM entries may contain unsorted ports, e.g. Netgear R6250 uses
25 # vlan1ports=3 2 1 0 5*
26 # vlan2ports=4 5u
27 # and early Netgear R8000 was using
28 # vlan1ports=3 2 1 0 5 7 8*
29 vlan1ports="$(echo $(nvram get vlan1ports | tr " " "\n" | sort))"
30 vlan2ports="$(echo $(nvram get vlan2ports | tr " " "\n" | sort))"
31 if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
32 echo "$vlan2ports" | egrep -q "^0 5"; then
33 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
34 ucidef_add_switch_vlan "switch0" "2" "0 5t"
35 elif echo "$vlan1ports" | egrep -q "^0 1 2 3 5 7 8" && \
36 echo "$vlan2ports" | egrep -q "^4 8"; then
37 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5 7 8t"
38 ucidef_add_switch_vlan "switch0" "2" "4 8t"
39 else
40 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
41 ucidef_add_switch_vlan "switch0" "2" "4 5t"
42 fi
43
44 board_config_flush
45
46 exit 0