803a4dc768c8fff280e67b9d466f6897c79a7e31
[openwrt/openwrt.git] / target / linux / mvebu / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2014-2015 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults-new.sh
7 . /lib/mvebu.sh
8
9 board_config_update
10
11 ucidef_set_interface_loopback
12
13 board=$(mvebu_board_name)
14
15 case "$board" in
16 armada-385-linksys-caiman)
17 ucidef_set_interfaces_lan_wan "eth1" "eth0"
18 ;;
19 armada-385-linksys-cobra)
20 ucidef_set_interfaces_lan_wan "eth1" "eth0"
21 ;;
22 armada-385-linksys-shelby)
23 ucidef_set_interfaces_lan_wan "eth1" "eth0"
24 ;;
25 armada-xp-linksys-mamba)
26 ucidef_set_interfaces_lan_wan "eth0" "eth1"
27 ucidef_add_switch "switch0" "1" "1"
28 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5"
29 ucidef_add_switch_vlan "switch0" "2" "4 6"
30 ;;
31 armada-385-db-ap)
32 ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
33 ;;
34 armada-xp-gp)
35 ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
36 ;;
37 *)
38 ucidef_set_interface_lan "eth0"
39 ;;
40 esac
41
42 board_config_flush
43
44 exit 0