[source] ar71xx: Fix switch config on Mikrotik RB450/G
LEDE Commits
lede-commits at lists.infradead.org
Mon Nov 21 01:58:09 PST 2016
blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/39433bb6182c30b2113fead646be58d94906acb4
commit 39433bb6182c30b2113fead646be58d94906acb4
Author: João Chaínho <joaochainho at gmail.com>
AuthorDate: Fri Nov 18 18:26:16 2016 +0000
ar71xx: Fix switch config on Mikrotik RB450/G
This patch fixes the ethernet switch initial config for Mikrotik RB450 and RB450G.
The previous version wrongly changed the RouterStation Pro config. This one creates a specific config for the RB450G and leaves the RouterStation Pro unchanged.
Signed-off-by: João Chaínho <joaochainho at gmail.com>
---
target/linux/ar71xx/base-files/etc/board.d/02_network | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/target/linux/ar71xx/base-files/etc/board.d/02_network b/target/linux/ar71xx/base-files/etc/board.d/02_network
index 2b9a012..949f161 100755
--- a/target/linux/ar71xx/base-files/etc/board.d/02_network
+++ b/target/linux/ar71xx/base-files/etc/board.d/02_network
@@ -345,9 +345,13 @@ ar71xx_setup_interfaces()
rb-450)
ucidef_set_interfaces_lan_wan "eth1" "eth0"
ucidef_add_switch "switch0" \
- "0:lan" "1:lan" "2:lan" "3:lan" "5 at eth1"
+ "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5 at eth1"
+ ;;
+ rb-450g)
+ ucidef_set_interfaces_lan_wan "eth1" "eth0"
+ ucidef_add_switch "switch0" \
+ "0 at eth1" "1:lan:1" "2:lan:4" "3:lan:3" "4:lan:2"
;;
- rb-450g|\
routerstation-pro)
ucidef_set_interfaces_lan_wan "eth1" "eth0"
ucidef_add_switch "switch0" \
More information about the lede-commits
mailing list