diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2013-02-04 22:38:37 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2013-02-04 22:38:37 +0000 |
commit | b753276ff56d649265dda3422aeeba61359d3433 (patch) | |
tree | 6184151e944939936d1d31990ef5572863b9f455 /target/linux/brcm47xx/base-files | |
parent | 5c4e7151fbabb20bacc372237dc13598117fab64 (diff) | |
download | upstream-b753276ff56d649265dda3422aeeba61359d3433.tar.gz upstream-b753276ff56d649265dda3422aeeba61359d3433.tar.bz2 upstream-b753276ff56d649265dda3422aeeba61359d3433.zip |
brcm47xx: Fix switch config on 4716/53115 devices
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35490 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm47xx/base-files')
-rwxr-xr-x | target/linux/brcm47xx/base-files/etc/init.d/netconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm47xx/base-files/etc/init.d/netconfig b/target/linux/brcm47xx/base-files/etc/init.d/netconfig index b4840c2c41..303ab56966 100755 --- a/target/linux/brcm47xx/base-files/etc/init.d/netconfig +++ b/target/linux/brcm47xx/base-files/etc/init.d/netconfig @@ -166,7 +166,7 @@ start() { } # generic broadcom 4716 processor with 53115 switch - if (nvram["boardtype"] == "0x04cf") { + if (tolower(nvram["boardtype"]) == "0x04cf") { c["vlan0ports"] = "1 2 3 4 8*" c["vlan1ports"] = "0 8" } |