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