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