brcm47xx: fix netconfig for inverted vlan?ports in nvram
authorHauke Mehrtens <hauke@hauke-m.de>
Mon, 11 Nov 2013 23:04:47 +0000 (23:04 +0000)
committerHauke Mehrtens <hauke@hauke-m.de>
Mon, 11 Nov 2013 23:04:47 +0000 (23:04 +0000)
This was observed on the Belkin Share F7D7302.

SVN-Revision: 38769

target/linux/brcm47xx/base-files/etc/init.d/netconfig

index 1bf948727b0d2c43f22f1702363c036a7c6da76a..d0ce9d3d483aa6ee7898b1f83423efbe2645a187 100755 (executable)
@@ -93,12 +93,14 @@ start() {
 
        END {
                if (((nvram["vlan0ports"] ~ /^0 1 2 3 8/ ) && (nvram["vlan1ports"] ~ /^4 8/ && (cpuport == "8"))) || \
-                   ((nvram["vlan1ports"] ~ /^0 1 2 3 8/ ) && (nvram["vlan2ports"] ~ /^4 8/ && (cpuport == "8")))) {
+                   ((nvram["vlan1ports"] ~ /^0 1 2 3 8/ ) && (nvram["vlan2ports"] ~ /^4 8/ && (cpuport == "8"))) || \
+                   ((nvram["vlan2ports"] ~ /^0 1 2 3 8/ ) && (nvram["vlan1ports"] ~ /^4 8/ && (cpuport == "8")))) {
                        c["vlan1ports"] = "0 1 2 3 8t"
                        c["vlan2ports"] = "4 8t"
                }
                if (((nvram["vlan0ports"] ~ /^0 1 2 3 5/ ) && (nvram["vlan1ports"] ~ /^4 5/ && (cpuport == "5"))) || \
-                   ((nvram["vlan1ports"] ~ /^0 1 2 3 5/ ) && (nvram["vlan2ports"] ~ /^4 5/ && (cpuport == "5")))) {
+                   ((nvram["vlan1ports"] ~ /^0 1 2 3 5/ ) && (nvram["vlan2ports"] ~ /^4 5/ && (cpuport == "5"))) || \
+                   ((nvram["vlan2ports"] ~ /^0 1 2 3 5/ ) && (nvram["vlan1ports"] ~ /^4 5/ && (cpuport == "5")))) {
                        c["vlan1ports"] = "0 1 2 3 5t"
                        c["vlan2ports"] = "4 5t"
                }