ath79: add new OF only target for QCA MIPS silicon
[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         "ubnt,unifi")
12                 ucidef_set_interface_lan "eth0"
13                 ;;
14
15         "tplink,tl-wr1043nd-v1")
16                 ucidef_add_switch "switch0" \
17                         "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
18                 ;;
19         "netgear,wndr3800")
20                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
21                 ucidef_add_switch "switch0" \
22                         "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
23
24                 ucidef_add_switch_attr "switch0" "blinkrate" 2
25                 ucidef_add_switch_port_attr "switch0" 1 led 6
26                 ucidef_add_switch_port_attr "switch0" 2 led 9
27                 ucidef_add_switch_port_attr "switch0" 5 led 2
28                 ;;
29         "buffalo,wzr-hp-g450h")
30                 ucidef_add_switch "switch0" \
31                         "0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
32                 ;;
33         *)
34                 ucidef_set_interfaces_lan_wan "eth0" "eth1"
35                 ;;
36         esac
37 }
38
39 board_config_update
40 board=$(board_name)
41 ath79_setup_interfaces $board
42 board_config_flush
43
44 exit 0