8e3c9177a221354e5295b3512cafd021af305a49
[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
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         "tplink,tl-mr3020-v1")
30                 ucidef_set_interface_lan "eth0.1"
31                 ucidef_add_switch "switch0" "0@eth0" "1:lan"
32                 ;;
33         "tplink,tl-wdr3600"|\
34         "tplink,tl-wdr4300")
35                 ucidef_add_switch "switch0" \
36                         "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
37                 ;;
38
39         "tplink,tl-wr740n-v2")
40                 ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
41                 ucidef_add_switch "switch0" \
42                         "0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
43                 ;;
44
45         "tplink,tl-wr1043nd-v1")
46                 ucidef_add_switch "switch0" \
47                         "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
48                 ;;
49         "netgear,wndr3800")
50                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
51                 ucidef_add_switch "switch0" \
52                         "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
53
54                 ucidef_add_switch_attr "switch0" "blinkrate" 2
55                 ucidef_add_switch_port_attr "switch0" 1 led 6
56                 ucidef_add_switch_port_attr "switch0" 2 led 9
57                 ucidef_add_switch_port_attr "switch0" 5 led 2
58                 ;;
59         "buffalo,wzr-hp-g450h")
60                 ucidef_add_switch "switch0" \
61                         "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
62                 ;;
63         *)
64                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
65                 ;;
66         esac
67 }
68
69 ath79_setup_macs()
70 {
71         local board="$1"
72
73         case "$board" in
74         avm,fritz300e)
75                 lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
76                 ;;
77         esac
78
79         [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
80 }
81
82 board_config_update
83 board=$(board_name)
84 ath79_setup_interfaces $board
85 ath79_setup_macs $board
86 board_config_flush
87
88 exit 0