diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-24 18:51:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-24 18:51:10 +0000 |
commit | 35176fec0892342171cd6272958d0b011e43fe60 (patch) | |
tree | 4ef4e8bd151bb5b9f956bd4bc09e5be0affd3b13 /package/base-files/brcm-2.6 | |
parent | 010faa438177e9ce6e96cde78f907411688dffa7 (diff) | |
download | upstream-35176fec0892342171cd6272958d0b011e43fe60.tar.gz upstream-35176fec0892342171cd6272958d0b011e43fe60.tar.bz2 upstream-35176fec0892342171cd6272958d0b011e43fe60.zip |
add netconfig fix for wl-500g premium
SVN-Revision: 5287
Diffstat (limited to 'package/base-files/brcm-2.6')
-rwxr-xr-x | package/base-files/brcm-2.6/etc/init.d/netconfig | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/package/base-files/brcm-2.6/etc/init.d/netconfig b/package/base-files/brcm-2.6/etc/init.d/netconfig index a7cc322d87..fe39f50516 100755 --- a/package/base-files/brcm-2.6/etc/init.d/netconfig +++ b/package/base-files/brcm-2.6/etc/init.d/netconfig @@ -51,8 +51,13 @@ start() { c["vlan1ports"] = "4 5" } if ((nvram["boardtype"] == "0x0467") || (nvram["boardtype"] == "0x042f")) { - c["vlan0ports"] = "0 1 2 3 5*" - c["vlan1ports"] = "4 5" + if (nvram["boardnum"] == "45") { + c["vlan0ports"] = "1 2 3 4 5*" + c["vlan1ports"] = "0 5" + } else { + c["vlan0ports"] = "0 1 2 3 5*" + c["vlan1ports"] = "4 5" + } } # WAP54G |