88cdd4f1f23e26eaaffdad407c5e58ed77047c1c
[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         "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         "tplink,tl-wr1043nd-v4")
52                 ucidef_add_switch "switch0" \
53                         "0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
54                 ;;
55         "netgear,wndr3800")
56                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
57                 ucidef_add_switch "switch0" \
58                         "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
59
60                 ucidef_add_switch_attr "switch0" "blinkrate" 2
61                 ucidef_add_switch_port_attr "switch0" 1 led 6
62                 ucidef_add_switch_port_attr "switch0" 2 led 9
63                 ucidef_add_switch_port_attr "switch0" 5 led 2
64                 ;;
65         "buffalo,wzr-hp-g450h")
66                 ucidef_add_switch "switch0" \
67                         "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
68                 ;;
69         "phicomm,k2t")
70                 ucidef_add_switch "switch0" \
71                         "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
72                 ;;
73         *)
74                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
75                 ;;
76         esac
77 }
78
79 ath79_setup_macs()
80 {
81         local board="$1"
82
83         case "$board" in
84         avm,fritz300e)
85                 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
86                 ;;
87         phicomm,k2t)
88                 lan_mac=$(k2t_get_mac "lan_mac")
89                 wan_mac=$(k2t_get_mac "wan_mac")
90                 ;;
91         esac
92
93         [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
94         [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
95 }
96
97 board_config_update
98 board=$(board_name)
99 ath79_setup_interfaces $board
100 ath79_setup_macs $board
101 board_config_flush
102
103 exit 0