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