ramips: Add support for Huawei HG255D in trunk
[openwrt.git] / target / linux / ramips / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2
3 . /lib/functions.sh
4 . /lib/ramips.sh
5 . /lib/functions/uci-defaults.sh
6
7 ramips_setup_rt3x5x_vlans()
8 {
9         if [ ! -x /sbin/swconfig ]; then
10                 # legacy default
11                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
12                 return
13         fi
14         local wanports=""
15         local lanports=""
16         for port in 5 4 3 2 1 0; do
17                 if [ `swconfig dev rt305x port $port get disable` = "1" ]; then
18                         continue
19                 fi
20                 if [ `swconfig dev rt305x port $port get lan` = "0" ]; then
21                         wanports="$port $wanports"
22                 else
23                         lanports="$port $lanports"
24                 fi
25         done
26         ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
27         ucidef_add_switch "rt305x" "1" "1"
28         ucidef_add_switch_vlan "rt305x" "1" "$lanports 6t"
29         ucidef_add_switch_vlan "rt305x" "2" "$wanports 6t"
30 }
31
32 ramips_setup_interfaces()
33 {
34         local board="$1"
35
36         ucidef_set_interface_loopback
37
38         case $board in
39         3g300m | \
40         w150m | \
41         all0256n | \
42         all5002 | \
43         all5003 | \
44         broadway | \
45         wnce2001)
46                 ucidef_add_switch "switch0" "1" "0"
47                 ucidef_set_interface_lan "eth0"
48                 ;;
49
50         3g-6200nl | \
51         wl-330n)
52                 ucidef_set_interface_lan "eth0.1"
53                 ;;
54
55         3g-6200n | \
56         argus-atp52b | \
57         b2c | \
58         nw718 | \
59         psr-680w | \
60         sl-r7205 | \
61         w502u | \
62         wr6202)
63                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
64                 ;;
65
66         asl26555)
67                 ucidef_set_interface_lan "eth0.1"
68                 ucidef_add_switch "switch0" "1" "1"
69                 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
70                 ;;
71
72         dir-645)
73                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
74                 ucidef_add_switch "switch0" "1" "1"
75                 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
76                 ucidef_add_switch_vlan "switch0" "2" "0 6t"
77                 ;;
78
79         dir-615-h1 | \
80         mzk-w300nh2)
81                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
82                 ucidef_add_switch "switch0" "1" "1"
83                 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 6t"
84                 ucidef_add_switch_vlan "switch0" "2" "4 6t"
85                 ;;
86
87         f5d8235-v1 | \
88         f5d8235-v2 | \
89         ur-326n4g)
90                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
91                 ucidef_add_switch "switch0" "1" "1"
92                 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
93                 ucidef_add_switch_vlan "switch0" "2" "0 6t"
94                 ;;
95
96         ur-336un)
97                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
98                 ;;
99
100         br6524n | \
101         v11st-fe)
102                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
103                 ucidef_add_switch "switch0" "1" "1"
104                 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
105                 ucidef_add_switch_vlan "switch0" "2" "0 5t"
106                 ;;
107
108         rt-n15 | \
109         wl-351)
110                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
111                 ucidef_add_switch "switch0" "1" "1"
112                 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
113                 ucidef_add_switch_vlan "switch0" "2" "4 5t"
114                 ;;
115
116         rt-n56u)
117                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
118                 ucidef_add_switch "switch0" "1" "1"
119                 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 8t"
120                 ucidef_add_switch_vlan "switch0" "2" "4 8t"
121                 ;;
122
123         tew-691gr|\
124         tew-692gr)
125                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
126                 ucidef_add_switch "switch0" "1" "1"
127                 ucidef_add_switch_vlan "switch0" "1" "0t 1 2 3 4"
128                 ucidef_add_switch_vlan "switch0" "2" "0t 5"
129                 ;;
130
131         wcr-150gn)
132                 ucidef_set_interfaces_lan_wan "eth0.2" "eth0.1"
133                 ;;
134
135         d105 | \
136         omni-emb-hpm|\
137         wli-tx4-ag300n)
138                 ucidef_set_interface_lan "eth0"
139                 ;;
140
141         *)
142                 RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"`
143                 if [ -n "${RT3X5X}" ]; then
144                         ramips_setup_rt3x5x_vlans
145                 else
146                         ucidef_set_interfaces_lan_wan "eth0" "eth1"
147                 fi
148                 ;;
149         esac
150 }
151
152 ramips_setup_macs()
153 {
154         local board="$1"
155         local lan_mac=""
156         local wan_mac=""
157
158         case $board in
159         all0256n | \
160         all5002 | \
161         dir-615-h1)
162                 lan_mac=$(mtd_get_mac_binary factory 40)
163                 ;;
164         3g-6200n | \
165         3g300m | \
166         w150m | \
167         air3gii | \
168         argus-atp52b | \
169         bc2 | \
170         br6425 | \
171         broadway | \
172         dir-620-d1 | \
173         f5d8235-v1 | \
174         mpr-a2 | \
175         mzk-w300nh2 | \
176         nw718 | \
177         psr-680w | \
178         rt-n15 | \
179         sl-r7205 | \
180         wl-351)
181                 lan_mac=$(mtd_get_mac_binary factory 4)
182                 wan_mac=$(macaddr_add "$lan_mac" 1)
183                 ;;
184
185         asl26555)
186                 lan_mac=$(mtd_get_mac_binary devdata 16388)
187                 ;;
188
189         w306r-v20)
190                 lan_mac=$(mtd_get_mac_binary factory 4)
191                 wan_mac=$(macaddr_add "$lan_mac" 5)
192                 ;;
193
194         rt-n13u | \
195         hg255d  | \
196         fonera20n)
197                 lan_mac=$(mtd_get_mac_binary factory 40)
198                 wan_mac=$(macaddr_add "$lan_mac" 1)
199                 ;;
200
201         dir-300-b1 |\
202         dir-300-b2 |\
203         dir-600-b1)
204                 lan_mac=$(mtd_get_mac_binary devdata 16388)
205                 wan_mac=$(macaddr_add "$lan_mac" 1)
206                 ;;
207
208         dir-620-a1)
209                 lan_mac=$(mtd_get_mac_binary factory 4)
210                 lan_mac=$(macaddr_setbit_la "$lan_mac")
211                 wan_mac=$(macaddr_add "$lan_mac" 1)
212                 ;;
213
214         dir-645)
215                 lan_mac=$(mtd_get_mac_ascii nvram lanmac)
216                 wan_mac=$(mtd_get_mac_ascii nvram wanmac)
217                 ;;
218
219         esr-9753 | \
220         ur-326n4g | \
221         ur-336un)
222                 lan_mac=$(mtd_get_mac_binary devdata 16388)
223                 wan_mac=$(macaddr_add "$lan_mac" 1)
224                 ;;
225
226         nbg-419n | \
227         wcr-150gn)
228                 lan_mac=$(mtd_get_mac_binary factory 4)
229                 wan_mac=$(mtd_get_mac_binary factory 40)
230                 ;;
231
232         omni-emb-hpm)
233                 lan_mac=$(mtd_get_mac_binary factory 40)
234                 ;;
235
236         f5d8235-v2)
237                 lan_mac=$(mtd_get_mac_binary "u-boot" 262148)
238                 wan_mac=$(macaddr_add "$lan_mac" 1)
239                 ;;
240
241         rt-n56u)
242                 lan_mac=$(mtd_get_mac_binary factory 4)
243                 wan_mac=$(mtd_get_mac_binary factory 32772)
244                 ;;
245
246         tew-691gr)
247                 lan_mac=$(mtd_get_mac_binary factory 40)
248                 wan_mac=$(macaddr_add "$lan_mac" 3)
249                 ;;
250
251         tew-692gr)
252                 lan_mac=$(mtd_get_mac_binary factory 40)
253                 wan_mac=$(macaddr_add "$lan_mac" 4)
254                 ;;
255
256         all0239-3g | \
257         carambola | \
258         freestation5 | \
259         w502u | \
260         wnce2001)
261                 lan_mac=$(mtd_get_mac_binary factory 40)
262                 wan_mac=$(mtd_get_mac_binary factory 46)
263                 ;;
264
265         wl341v3)
266                 lan_mac=$(mtd_get_mac_binary board-nvram 65440)
267                 wan_mac=$(macaddr_add "$lan_mac" 1)
268                 ;;
269
270         d105 | \
271         wli-tx4-ag300n)
272                 lan_mac=$(mtd_get_mac_binary factory 4)
273                 ;;
274
275         esac
276
277         [ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac
278         [ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac
279 }
280
281 [ -e /etc/config/network ] && exit 0
282
283 touch /etc/config/network
284
285 board=$(ramips_board_name)
286
287 ramips_setup_interfaces $board
288 ramips_setup_macs $board
289
290 uci commit network
291
292 exit 0