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