ipq806x: add support for Linksys EA7500 V1
[openwrt/openwrt.git] / target / linux / ipq806x / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 #
3 # Copyright (c) 2015 The Linux Foundation. All rights reserved.
4 # Copyright (c) 2011-2015 OpenWrt.org
5 #
6
7 . /lib/functions/uci-defaults.sh
8 . /lib/functions/system.sh
9
10 board_config_update
11
12 board=$(board_name)
13
14 case "$board" in
15 buffalo,wxr-2533dhp |\
16 compex,wpq864 |\
17 netgear,d7800 |\
18 netgear,r7500 |\
19 netgear,r7500v2 |\
20 qcom,ipq8064-ap148 |\
21 tplink,vr2600v)
22 ucidef_add_switch "switch0" \
23 "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
24 ;;
25 qcom,ipq8064-ap161)
26 ucidef_set_interface_lan "eth1 eth2"
27 ucidef_add_switch "switch0" \
28 "0:lan" "1:lan" "2:lan" "3u@eth1" "6:wan" "4u@eth0"
29 ;;
30 linksys,ea7500-v1)
31 hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
32 ucidef_add_switch "switch0" \
33 "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "6@eth1" "1:wan" "0@eth0"
34 ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
35 ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
36 ;;
37 linksys,ea8500)
38 hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
39 ucidef_add_switch "switch0" \
40 "0@eth0" "1:lan" "2:lan" "3:lan" "4:lan" "5:wan"
41 ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
42 ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
43 ;;
44 nec,wg2600hp)
45 ucidef_add_switch "switch0" \
46 "2:lan" "3:lan" "4:lan" "5:lan" "6@eth1" "1:wan" "0@eth0"
47 ;;
48 netgear,r7800 |\
49 tplink,c2600)
50 ucidef_add_switch "switch0" \
51 "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "6@eth1" "5:wan" "0@eth0"
52 ;;
53 qcom,ipq8064-db149)
54 ucidef_set_interface_lan "eth1 eth2 eth3"
55 ucidef_add_switch "switch0" \
56 "1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "5:wan" "0u@eth0"
57 ;;
58 zyxel,nbg6817)
59 hw_mac_addr=$(mtd_get_mac_ascii 0:APPSBLENV ethaddr)
60 ucidef_add_switch "switch0" \
61 "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
62 ucidef_set_interface_macaddr "lan" "$(macaddr_add $hw_mac_addr 2)"
63 ucidef_set_interface_macaddr "wan" "$(macaddr_add $hw_mac_addr 3)"
64 ;;
65 *)
66 echo "Unsupported hardware. Network interfaces not intialized"
67 ;;
68 esac
69
70 board_config_flush
71
72 exit 0