diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-02-04 22:38:37 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2013-02-04 22:38:37 +0000 |
commit | c2198aba320bf354de00cc76e1ae990da24ee1ec (patch) | |
tree | 807efe1fd93f56fff1529edaf0c4ca35a14c36cb | |
parent | b97aee1ee851c6ce0f48e9c231a8152c1151dbe4 (diff) | |
download | upstream-c2198aba320bf354de00cc76e1ae990da24ee1ec.tar.gz upstream-c2198aba320bf354de00cc76e1ae990da24ee1ec.tar.bz2 upstream-c2198aba320bf354de00cc76e1ae990da24ee1ec.zip |
brcm47xx: Fix switch config on 4716/53115 devices
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
SVN-Revision: 35490
-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" } |