2
0
forked from Ivasoft/openwrt

add WRT300N v1.1 support (patch from #6379)

SVN-Revision: 18921
This commit is contained in:
Felix Fietkau
2009-12-24 10:58:09 +00:00
parent 919724ab50
commit 46f75ee869
4 changed files with 40 additions and 3 deletions

View File

@@ -164,8 +164,10 @@ start() {
c["lan_ifname"] = "eth0"
c["wan_ifname"] = "eth1"
}
if (nvram["boardtype"] == "0x478") {
# generic broadcom 4785 processor with 5397 switch?
# generic broadcom 4705/4785 processor with 5397 switch?
# EXCEPT Linksys WRT300N V1.1
if ((nvram["boardtype"] == "0x478") && \
(model != "Linksys WRT300N V1.1")) {
c["vlan0ports"] = "1 2 3 4 8*"
c["vlan1ports"] = "0 8"
}