ath79: add ubiquiti unifi ap ac lite/lr
[openwrt/openwrt.git] / target / linux / ath79 / base-files / etc / board.d / 02_network
1 #!/bin/sh
2
3 . /lib/functions/system.sh
4 . /lib/functions/uci-defaults.sh
5 . /lib/functions/k2t.sh
6
7 ath79_setup_interfaces()
8 {
9 local board="$1"
10
11 case "$board" in
12 "etactica,eg200")
13 ucidef_set_interface_lan "eth0" "dhcp"
14 ;;
15 "avm,fritz300e"|\
16 "tplink,tl-mr10u"|\
17 "tplink,tl-wr703n"|\
18 "ubnt,ubnt-unifiac-lite"|\
19 "ubnt,unifi")
20 ucidef_set_interface_lan "eth0"
21 ;;
22
23 "embeddedwireless,dorin")
24 ucidef_add_switch "switch0" \
25 "0@eth0" "1:wan" "2:lan:3" "3:lan:2"
26 ;;
27
28 "glinet,ar150")
29 ucidef_set_interfaces_lan_wan "eth1" "eth0"
30 ;;
31 "tplink,tl-mr3020-v1")
32 ucidef_set_interface_lan "eth0.1"
33 ucidef_add_switch "switch0" "0@eth0" "1:lan"
34 ;;
35 "tplink,tl-wdr3600"|\
36 "tplink,tl-wdr4300")
37 ucidef_add_switch "switch0" \
38 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
39 ;;
40
41 "tplink,tl-wr740n-v2")
42 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
43 ucidef_add_switch "switch0" \
44 "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
45 ;;
46
47 "tplink,tl-wr1043nd-v1")
48 ucidef_add_switch "switch0" \
49 "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
50 ;;
51 "netgear,wndr3800")
52 ucidef_set_interfaces_lan_wan "eth0" "eth1"
53 ucidef_add_switch "switch0" \
54 "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
55
56 ucidef_add_switch_attr "switch0" "blinkrate" 2
57 ucidef_add_switch_port_attr "switch0" 1 led 6
58 ucidef_add_switch_port_attr "switch0" 2 led 9
59 ucidef_add_switch_port_attr "switch0" 5 led 2
60 ;;
61 "buffalo,wzr-hp-g450h")
62 ucidef_add_switch "switch0" \
63 "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
64 ;;
65 "phicomm,k2t")
66 ucidef_add_switch "switch0" \
67 "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
68 ;;
69 *)
70 ucidef_set_interfaces_lan_wan "eth0" "eth1"
71 ;;
72 esac
73 }
74
75 ath79_setup_macs()
76 {
77 local board="$1"
78
79 case "$board" in
80 avm,fritz300e)
81 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
82 ;;
83 phicomm,k2t)
84 lan_mac=$(k2t_get_mac "lan_mac")
85 wan_mac=$(k2t_get_mac "wan_mac")
86 ;;
87 esac
88
89 [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
90 [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
91 }
92
93 board_config_update
94 board=$(board_name)
95 ath79_setup_interfaces $board
96 ath79_setup_macs $board
97 board_config_flush
98
99 exit 0