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