0c9a5fa4e409f433ba1b7fa28564cf065af6bb7b
[openwrt/staging/dedeckeh.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,unifi")
19 ucidef_set_interface_lan "eth0"
20 ;;
21
22 "embeddedwireless,dorin")
23 ucidef_add_switch "switch0" \
24 "0@eth0" "1:wan" "2:lan:3" "3:lan:2"
25 ;;
26
27 "glinet,ar150")
28 ucidef_set_interfaces_lan_wan "eth1" "eth0"
29 ;;
30 "tplink,tl-mr3020-v1")
31 ucidef_set_interface_lan "eth0.1"
32 ucidef_add_switch "switch0" "0@eth0" "1:lan"
33 ;;
34 "tplink,tl-wdr3600"|\
35 "tplink,tl-wdr4300")
36 ucidef_add_switch "switch0" \
37 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
38 ;;
39
40 "tplink,tl-wr740n-v2")
41 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
42 ucidef_add_switch "switch0" \
43 "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
44 ;;
45
46 "tplink,tl-wr1043nd-v1")
47 ucidef_add_switch "switch0" \
48 "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
49 ;;
50 "netgear,wndr3800")
51 ucidef_set_interfaces_lan_wan "eth0" "eth1"
52 ucidef_add_switch "switch0" \
53 "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
54
55 ucidef_add_switch_attr "switch0" "blinkrate" 2
56 ucidef_add_switch_port_attr "switch0" 1 led 6
57 ucidef_add_switch_port_attr "switch0" 2 led 9
58 ucidef_add_switch_port_attr "switch0" 5 led 2
59 ;;
60 "buffalo,wzr-hp-g450h")
61 ucidef_add_switch "switch0" \
62 "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
63 ;;
64 "phicomm,k2t")
65 ucidef_add_switch "switch0" \
66 "0@eth0" "3:lan:1" "5:lan:2" "4:wan"
67 ;;
68 *)
69 ucidef_set_interfaces_lan_wan "eth0" "eth1"
70 ;;
71 esac
72 }
73
74 ath79_setup_macs()
75 {
76 local board="$1"
77
78 case "$board" in
79 avm,fritz300e)
80 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
81 ;;
82 phicomm,k2t)
83 lan_mac=$(k2t_get_mac "lan_mac")
84 wan_mac=$(k2t_get_mac "wan_mac")
85 ;;
86 esac
87
88 [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
89 [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
90 }
91
92 board_config_update
93 board=$(board_name)
94 ath79_setup_interfaces $board
95 ath79_setup_macs $board
96 board_config_flush
97
98 exit 0