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