b07091d74fee4026537c5f2541eb5f5bf733ad47
[openwrt/staging/mkresin.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_ports "switch0" \
29 "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5@eth0" "4:wan" "6@eth1"
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