aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell Senior <russell@personaltelco.net>2016-05-07 02:32:13 -0700
committerJo-Philipp Wich <jo@mein.io>2016-05-10 10:43:17 +0200
commitc3cf3c4ec4849f0594b5b7ffcb3502e5c28564b4 (patch)
tree966032318e9a7070dc7e4f5bd825d2a767b101cf
parent823c58a1cfb08b14eb844fdae38cc5c6b783d081 (diff)
downloadupstream-c3cf3c4ec4849f0594b5b7ffcb3502e5c28564b4.tar.gz
upstream-c3cf3c4ec4849f0594b5b7ffcb3502e5c28564b4.tar.bz2
upstream-c3cf3c4ec4849f0594b5b7ffcb3502e5c28564b4.zip
brcm47xx: fix wgt634u port assignment, broken since openwrt r47866
Signed-off-by: Russell Senior <russell@personaltelco.net>
-rwxr-xr-xtarget/linux/brcm47xx/base-files/etc/board.d/01_detect2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm47xx/base-files/etc/board.d/01_detect b/target/linux/brcm47xx/base-files/etc/board.d/01_detect
index 91ac16eed7..16b81d4fe9 100755
--- a/target/linux/brcm47xx/base-files/etc/board.d/01_detect
+++ b/target/linux/brcm47xx/base-files/etc/board.d/01_detect
@@ -124,7 +124,7 @@ detect_by_model() {
# Netgear WGT634U exception
if grep -sqE 'mtd0: 000(6|a)0000' /proc/mtd; then
ucidef_add_switch "switch0" \
- "0:wan" "1:lan" "2:lan" "3:lan" "4:lan" "5@eth0"
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5@eth0"
return
fi
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193