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