bcm53xx: sort ports from NVRAM entries before matching them
[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 ucidef_set_interface_loopback
11
12 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
13 ucidef_add_switch "switch0" "1" "1"
14
15 # NVRAM entries may contain unsorted ports, e.g. Netgear R6250 uses
16 # vlan1ports=3 2 1 0 5*
17 # vlan2ports=4 5u
18 # and early Netgear R8000 was using
19 # vlan1ports=3 2 1 0 5 7 8*
20 vlan1ports="$(echo $(nvram get vlan1ports | tr " " "\n" | sort))"
21 vlan2ports="$(echo $(nvram get vlan2ports | tr " " "\n" | sort))"
22 if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
23    echo "$vlan2ports" | egrep -q "^0 5"; then
24         ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
25         ucidef_add_switch_vlan "switch0" "2" "0 5t"
26 elif echo "$vlan1ports" | egrep -q "^0 1 2 3 5 7 8" && \
27      echo "$vlan2ports" | egrep -q "^4 8"; then
28         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5 7 8t"
29         ucidef_add_switch_vlan "switch0" "2" "4 8t"
30 else
31         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
32         ucidef_add_switch_vlan "switch0" "2" "4 5t"
33 fi
34
35 board_config_flush
36
37 exit 0