diff options
author | Nelson Cai <niphor@gmail.com> | 2020-07-20 13:02:27 +0800 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-07-20 17:16:47 +0200 |
commit | 6269f10ea4c4c126a00789e5e0e224422a2b1317 (patch) | |
tree | dea508565681c0ba92c7949c76aeed0d7320d61e /target | |
parent | 93bbd998aa696a5e9cff51131854b78b30c0af34 (diff) | |
download | upstream-6269f10ea4c4c126a00789e5e0e224422a2b1317.tar.gz upstream-6269f10ea4c4c126a00789e5e0e224422a2b1317.tar.bz2 upstream-6269f10ea4c4c126a00789e5e0e224422a2b1317.zip |
ramips: fix network setup for Ubiquiti ER-X/ER-X-SFP
The function name ucidef_set_interface_lan_wan does not exist,
use the proper name by adding an "s" and thereby fix network
setup on these devices.
Fixes: 22468cc40c8b (ramips: erx and erx-sfp: fix missing WAN interface)
Signed-off-by: Nelson Cai <niphor@gmail.com>
[commit message/title facelift]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/ramips/mt7621/base-files/etc/board.d/02_network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/mt7621/base-files/etc/board.d/02_network b/target/linux/ramips/mt7621/base-files/etc/board.d/02_network index 9c32f59ab8..2d3db99b3d 100755 --- a/target/linux/ramips/mt7621/base-files/etc/board.d/02_network +++ b/target/linux/ramips/mt7621/base-files/etc/board.d/02_network @@ -48,10 +48,10 @@ ramips_setup_interfaces() ucidef_set_interfaces_lan_wan "lan2 lan3 lan4 lan5" "wan" ;; ubnt,edgerouter-x) - ucidef_set_interface_lan_wan "eth1 eth2 eth3 eth4" "eth0" + ucidef_set_interfaces_lan_wan "eth1 eth2 eth3 eth4" "eth0" ;; ubnt,edgerouter-x-sfp) - ucidef_set_interface_lan_wan "eth1 eth2 eth3 eth4 eth5" "eth0" + ucidef_set_interfaces_lan_wan "eth1 eth2 eth3 eth4 eth5" "eth0" ;; zyxel,wap6805) ucidef_set_interface_lan "lan1 lan2 lan3 lan4" |