diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2018-03-08 15:49:00 +0900 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-03-17 08:09:04 +0100 |
commit | dbdc26ba33c19274e54b92e273073117b9e89ccb (patch) | |
tree | 9c0ca4e05db18145883bf7b3e2b3369fcc4fd370 /target/linux/ramips | |
parent | 5862f01ef71e7ec75394e877e74e781b7d08a4d3 (diff) | |
download | upstream-dbdc26ba33c19274e54b92e273073117b9e89ccb.tar.gz upstream-dbdc26ba33c19274e54b92e273073117b9e89ccb.tar.bz2 upstream-dbdc26ba33c19274e54b92e273073117b9e89ccb.zip |
ramips: fix switch for Nexx devices
There are 2 ethernet ports on Nexx WT1520 and WT3020. These ethernet
ports are assigned as follows, and other ports cannot be used.
- WT1520:
- port0 -> lan
- port4 -> wan
- WT3020:
- port0 -> wan
- port4 -> lan
I dropped ports that cannot be used.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target/linux/ramips')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/02_network | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network index f95f24c6c2..20ecf1ab76 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -112,8 +112,6 @@ ramips_setup_interfaces() witi|\ wl-wn575a3|\ wndr3700v5|\ - wt1520-4M|\ - wt1520-8M|\ youku-yk1|\ zbt-ape522ii|\ zbt-we1326|\ @@ -209,8 +207,6 @@ ramips_setup_interfaces() wrtnode|\ wrtnode2p | \ wrtnode2r | \ - wt3020-4M|\ - wt3020-8M|\ zbt-wa05) ucidef_add_switch "switch0" \ "1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "6@eth0" @@ -323,7 +319,9 @@ ramips_setup_interfaces() ucidef_add_switch "switch0" \ "1:lan" "2:lan" "3:lan" "4:lan" "5:wan" "0@eth0" ;; - vonets,var11n-300) + vonets,var11n-300|\ + wt1520-4M|\ + wt1520-8M) ucidef_add_switch "switch0" \ "0:lan" "4:wan" "6@eth0" ;; @@ -356,6 +354,11 @@ ramips_setup_interfaces() ucidef_add_switch "switch0" \ "1:lan" "2:lan" "0:wan" "6@eth0" ;; + wt3020-4M|\ + wt3020-8M) + ucidef_add_switch "switch0" \ + "4:lan" "0:wan" "6@eth0" + ;; zbtlink,zbt-we1226|\ y1) ucidef_add_switch "switch0" \ |