OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | #!/bin/sh |
2 | # Copyright (C) 2014-2015 OpenWrt.org |
||
3 | |||
4 | . /lib/functions/uci-defaults.sh |
||
5 | . /lib/functions.sh |
||
6 | . /lib/functions/system.sh |
||
7 | |||
8 | board_config_update |
||
9 | |||
10 | board=$(board_name) |
||
11 | |||
12 | case "$board" in |
||
13 | aerohive,hiveap-330) |
||
14 | ucidef_set_interfaces_lan_wan "eth1" "eth0" |
||
15 | ;; |
||
16 | tplink,tl-wdr4900-v1) |
||
17 | ucidef_add_switch "switch0" \ |
||
18 | "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan" |
||
19 | ucidef_set_interface_macaddr "wan" "$(mtd_get_mac_binary config 332)" |
||
20 | ;; |
||
21 | *) |
||
22 | ucidef_set_interfaces_lan_wan "eth0" "eth1" |
||
23 | ;; |
||
24 | esac |
||
25 | |||
26 | board_config_flush |
||
27 | |||
28 | exit 0 |