ath79: initial gl-ar300m support
[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,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         "tplink,tl-mr3020-v1")
37                 ucidef_set_interface_lan "eth0.1"
38                 ucidef_add_switch "switch0" "0@eth0" "1:lan"
39                 ;;
40         "tplink,tl-wdr3600"|\
41         "tplink,tl-wdr4300")
42                 ucidef_add_switch "switch0" \
43                         "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
44                 ;;
45
46         "tplink,tl-wr740n-v2")
47                 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
48                 ucidef_add_switch "switch0" \
49                         "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
50                 ;;
51
52         "tplink,tl-wr1043nd-v1")
53                 ucidef_add_switch "switch0" \
54                         "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
55                 ;;
56         "tplink,tl-wr1043nd-v4")
57                 ucidef_add_switch "switch0" \
58                         "0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
59                 ;;
60         "netgear,wndr3800")
61                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
62                 ucidef_add_switch "switch0" \
63                         "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
64
65                 ucidef_add_switch_attr "switch0" "blinkrate" 2
66                 ucidef_add_switch_port_attr "switch0" 1 led 6
67                 ucidef_add_switch_port_attr "switch0" 2 led 9
68                 ucidef_add_switch_port_attr "switch0" 5 led 2
69                 ;;
70         "buffalo,wzr-hp-g450h")
71                 ucidef_add_switch "switch0" \
72                         "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
73                 ;;
74         "phicomm,k2t")
75                 ucidef_add_switch "switch0" \
76                         "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
77                 ;;
78         *)
79                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
80                 ;;
81         esac
82 }
83
84 ath79_setup_macs()
85 {
86         local board="$1"
87
88         case "$board" in
89         avm,fritz300e)
90                 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
91                 ;;
92         phicomm,k2t)
93                 lan_mac=$(k2t_get_mac "lan_mac")
94                 wan_mac=$(k2t_get_mac "wan_mac")
95                 ;;
96         esac
97
98         [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
99         [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
100 }
101
102 board_config_update
103 board=$(board_name)
104 ath79_setup_interfaces $board
105 ath79_setup_macs $board
106 board_config_flush
107
108 exit 0