ad004d792c293b70a4826c5f0906fb384e9e5bcd
[15.05/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 asus,rt-ac87u)
13         ifname=eth1
14         ;;
15 netgear,r8000)
16         ifname=eth2
17         ;;
18 *)
19         ifname=eth0
20         ;;
21 esac
22
23 ucidef_set_interface_loopback
24 ucidef_set_interfaces_lan_wan "$ifname.1" "$ifname.2"
25 ucidef_add_switch "switch0" "1" "1"
26
27 # NVRAM entries may contain unsorted ports, e.g. Netgear R6250 uses
28 # vlan1ports=3 2 1 0 5*
29 # vlan2ports=4 5u
30 # and early Netgear R8000 was using
31 # vlan1ports=3 2 1 0 5 7 8*
32 vlan1ports="$(echo $(nvram get vlan1ports | tr " " "\n" | sort))"
33 vlan2ports="$(echo $(nvram get vlan2ports | tr " " "\n" | sort))"
34 if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
35    echo "$vlan2ports" | egrep -q "^0 5"; then
36         ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
37         ucidef_add_switch_vlan "switch0" "2" "0 5t"
38 elif echo "$vlan1ports" | egrep -q "^1 2 3 5 7" && \
39      echo "$vlan2ports" | egrep -q "^0 7"; then
40         ucidef_add_switch_vlan "switch0" "1" "1 2 3 5 7t"
41         ucidef_add_switch_vlan "switch0" "2" "0 7t"
42 elif echo "$vlan1ports" | egrep -q "^0 1 2 3 5 7 8" && \
43      echo "$vlan2ports" | egrep -q "^4 8"; then
44         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5 7 8t"
45         ucidef_add_switch_vlan "switch0" "2" "4 8t"
46 else
47         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
48         ucidef_add_switch_vlan "switch0" "2" "4 5t"
49 fi
50
51 board_config_flush
52
53 exit 0