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