ipq806x: add Edgecore ECW5410 support
[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 edgecore,ecw5410)
26 ucidef_set_interfaces_lan_wan "eth1" "eth0"
27 ucidef_set_interface_macaddr "lan" "$(mtd_get_mac_binary "0:ART" 0x6)"
28 ucidef_set_interface_macaddr "wan" "$(mtd_get_mac_binary "0:ART" 0x0)"
29 ;;
30 qcom,ipq8064-ap161)
31 ucidef_set_interface_lan "eth1 eth2"
32 ucidef_add_switch "switch0" \
33 "0:lan" "1:lan" "2:lan" "3u@eth1" "6:wan" "4u@eth0"
34 ;;
35 linksys,ea7500-v1)
36 hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
37 ucidef_add_switch "switch0" \
38 "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "6@eth1" "1:wan" "0@eth0"
39 ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
40 ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
41 ;;
42 linksys,ea8500)
43 hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
44 ucidef_add_switch "switch0" \
45 "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
46 ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
47 ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
48 ;;
49 nec,wg2600hp)
50 ucidef_add_switch "switch0" \
51 "2:lan" "3:lan" "4:lan" "5:lan" "6@eth1" "1:wan" "0@eth0"
52 ;;
53 netgear,r7800 |\
54 tplink,c2600)
55 ucidef_add_switch "switch0" \
56 "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "6@eth1" "5:wan" "0@eth0"
57 ;;
58 qcom,ipq8064-db149)
59 ucidef_set_interface_lan "eth1 eth2 eth3"
60 ucidef_add_switch "switch0" \
61 "1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "5:wan" "0u@eth0"
62 ;;
63 zyxel,nbg6817)
64 hw_mac_addr=$(mtd_get_mac_ascii 0:APPSBLENV ethaddr)
65 ucidef_add_switch "switch0" \
66 "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
67 ucidef_set_interface_macaddr "lan" "$(macaddr_add $hw_mac_addr 2)"
68 ucidef_set_interface_macaddr "wan" "$(macaddr_add $hw_mac_addr 3)"
69 ;;
70 *)
71 echo "Unsupported hardware. Network interfaces not intialized"
72 ;;
73 esac
74
75 board_config_flush
76
77 exit 0