bcm53xx: make use of the new board detection layer
[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 ucidef_set_interface_loopback
11
12 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
13 ucidef_add_switch "switch0" "1" "1"
14
15 vlan1ports="$(nvram get vlan1ports)"
16 vlan2ports="$(nvram get vlan2ports)"
17 if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
18 echo "$vlan2ports" | egrep -q "^0 5"; then
19 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
20 ucidef_add_switch_vlan "switch0" "2" "0 5t"
21 elif echo "$vlan1ports" | egrep -q "^0 1 2 3 5 7 8" && \
22 echo "$vlan2ports" | egrep -q "^4 8"; then
23 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5 7 8t"
24 ucidef_add_switch_vlan "switch0" "2" "4 8t"
25 else
26 # This also handles some funcy (e.g. R6250) configs like:
27 # vlan1ports=3 2 1 0 5*
28 # vlan2ports=4 5u
29 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
30 ucidef_add_switch_vlan "switch0" "2" "4 5t"
31 fi
32
33 board_config_flush
34
35 exit 0