projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add netconfig fix for wl-500g premium
[openwrt.git]
/
package
/
base-files
/
brcm-2.6
/
etc
/
init.d
/
netconfig
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
a7cc322
..
fe39f50
100755
(executable)
--- 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["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
}
# WAP54G
This page took
0.023779 seconds
and
4
git commands to generate.