projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add support for the MN-700 platform, closes #2575
[openwrt.git]
/
target
/
linux
/
brcm-2.4
/
base-files
/
etc
/
init.d
/
netconfig
diff --git
a/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
b/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
index
638f664
..
435288f
100755
(executable)
--- a/
target/linux/brcm-2.4/base-files/etc/init.d/netconfig
+++ b/
target/linux/brcm-2.4/base-files/etc/init.d/netconfig
@@
-107,7
+107,7
@@
start() {
c["vlan0ports"] = ""
c["vlan1ports"] = ""
}
c["vlan0ports"] = ""
c["vlan1ports"] = ""
}
- if (
model == "ASUS WL-500g"
) {
+ if (
(model == "ASUS WL-500g") || (model == "Microsoft MN-700")
) {
c["wan_ifname"] = "eth1"
c["lan_ifname"] = "eth0"
}
c["wan_ifname"] = "eth1"
c["lan_ifname"] = "eth0"
}
@@
-164,8
+164,10
@@
start() {
c["lan_ifname"] = "eth0"
c["wan_ifname"] = "eth1"
}
c["lan_ifname"] = "eth0"
c["wan_ifname"] = "eth1"
}
- if (nvram["boardtype"] == "0x478") {
- # generic broadcom 4785 processor with 5397 switch?
+ # generic broadcom 4705/4785 processor with 5397 switch?
+ # EXCEPT Linksys WRT300N V1.1
+ if ((nvram["boardtype"] == "0x478") && \
+ (model != "Linksys WRT300N V1.1")) {
c["vlan0ports"] = "1 2 3 4 8*"
c["vlan1ports"] = "0 8"
}
c["vlan0ports"] = "1 2 3 4 8*"
c["vlan1ports"] = "0 8"
}
@@
-205,6
+207,12
@@
start() {
c["vlan0ports"] = "0 1 2 3 4 5u"
c["vlan1ports"] = ""
}
c["vlan0ports"] = "0 1 2 3 4 5u"
c["vlan1ports"] = ""
}
+ if (model == "OvisLink WL-1600GL") {
+ c["lan_ifname"] = "eth0.0"
+ c["wan_ifname"] = "eth0.1"
+ c["vlan0ports"] = "0 1 2 3 5*"
+ c["vlan1ports"] = "4 5"
+ }
if (c["vlan0ports"] || c["vlan1ports"]) {
print "#### VLAN configuration "
if (c["vlan0ports"] || c["vlan1ports"]) {
print "#### VLAN configuration "
This page took
0.020371 seconds
and
4
git commands to generate.