3282d8ad901fa7adbbc13a5450947fed623efc43
[oweals/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,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
32         "glinet,ar300m")
33                 ucidef_set_interfaces_lan_wan "eth1" "eth0"
34                 ;;
35
36         "netgear,wnr612-v2"|\
37         "on,n150r")
38                 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
39                 ucidef_add_switch "switch0" \
40                 "0@eth1" "1:lan" "2:lan" "3:lan:3" "4:lan:4"
41                 ;;
42
43         "tplink,tl-archer-c7-v2")
44                 ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
45                 ucidef_add_switch "switch0" \
46                         "0@eth1" "2:lan" "3:lan" "4:lan" "5:lan" "6@eth0" "1:wan"
47                 ;;
48
49         "tplink,tl-mr3020-v1")
50                 ucidef_set_interface_lan "eth0.1"
51                 ucidef_add_switch "switch0" "0@eth0" "1:lan"
52                 ;;
53         "tplink,tl-wdr3600"|\
54         "tplink,tl-wdr4300")
55                 ucidef_add_switch "switch0" \
56                         "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
57                 ;;
58
59         "tplink,tl-wr740n-v2")
60                 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
61                 ucidef_add_switch "switch0" \
62                         "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
63                 ;;
64
65         "tplink,tl-wr1043nd-v1")
66                 ucidef_add_switch "switch0" \
67                         "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
68                 ;;
69         "tplink,tl-wr1043nd-v4")
70                 ucidef_add_switch "switch0" \
71                         "0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
72                 ;;
73         "tplink,tl-wr1043nd-v2"|\
74         "tplink,tl-wr1043nd-v3")
75                 ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
76                 ucidef_add_switch "switch0" \
77                         "0@eth1" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan" "6@eth0"
78                 ;;
79         "tplink,tl-wr2543-v1")
80                 ucidef_add_switch "switch0" \
81                         "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "9@eth0"
82                 ;;
83         "netgear,wndr3800")
84                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
85                 ucidef_add_switch "switch0" \
86                         "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
87
88                 ucidef_add_switch_attr "switch0" "blinkrate" 2
89                 ucidef_add_switch_port_attr "switch0" 1 led 6
90                 ucidef_add_switch_port_attr "switch0" 2 led 9
91                 ucidef_add_switch_port_attr "switch0" 5 led 2
92                 ;;
93         "buffalo,wzr-hp-g450h")
94                 ucidef_add_switch "switch0" \
95                         "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
96                 ;;
97         "phicomm,k2t")
98                 ucidef_add_switch "switch0" \
99                         "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
100                 ;;
101         "ubnt,unifiac-pro")
102                 ucidef_add_switch "switch0" \
103                         "0@eth0" "2:lan" "3:wan"
104                 ;;
105         *)
106                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
107                 ;;
108         esac
109 }
110
111 ath79_setup_macs()
112 {
113         local board="$1"
114
115         case "$board" in
116         avm,fritz300e)
117                 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
118                 ;;
119         phicomm,k2t)
120                 lan_mac=$(k2t_get_mac "lan_mac")
121                 wan_mac=$(k2t_get_mac "wan_mac")
122                 ;;
123         esac
124
125         [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
126         [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
127 }
128
129 board_config_update
130 board=$(board_name)
131 ath79_setup_interfaces $board
132 ath79_setup_macs $board
133 board_config_flush
134
135 exit 0