summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm-2.4/base-files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-04-13 22:34:13 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-04-13 22:34:13 +0000
commit6fd5014c56c4801aa8bee5e2345a58eac9f79105 (patch)
tree744a52b833b66bf43cde496417086b5322dc16a2 /target/linux/brcm-2.4/base-files
parentb5cfd7bde5b4522c402e9c361edf0ee34ea7c68a (diff)
downloadmaster-31e0f0ae-6fd5014c56c4801aa8bee5e2345a58eac9f79105.tar.gz
master-31e0f0ae-6fd5014c56c4801aa8bee5e2345a58eac9f79105.tar.bz2
master-31e0f0ae-6fd5014c56c4801aa8bee5e2345a58eac9f79105.zip
add Buffalo WHR-G125 specifc switch quirks to netconfig, shorten code by merging identical fixes
SVN-Revision: 20846
Diffstat (limited to 'target/linux/brcm-2.4/base-files')
-rwxr-xr-xtarget/linux/brcm-2.4/base-files/etc/init.d/netconfig16
1 files changed, 4 insertions, 12 deletions
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 d20ff43b80..d7839b6b49 100755
--- a/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
+++ b/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
@@ -112,9 +112,9 @@ start() {
c["wan_ifname"] = "eth1"
c["lan_ifname"] = "eth0"
}
- if (model == "ASUS WL-500g Premium V2") {
- c["vlan0ports"] = "0 1 2 3 5"
- c["vlan1ports"] = "4 5"
+ if ((model == "ASUS WL-500g Premium V2") || (model == "Dell TrueMobile 2300 v2") || (model == "Buffalo WHR-G125")) {
+ c["vlan0ports"] = "0 1 2 3 5"
+ c["vlan1ports"] = "4 5"
}
if (model == "Dell TrueMobile 2300") {
c["lan_ifname"] = "eth0"
@@ -122,20 +122,12 @@ start() {
c["vlan0ports"] = "0 1 2 3 4 5u"
c["vlan1ports"] = ""
}
- if (model == "Dell TrueMobile 2300 v2") {
- c["vlan0ports"] = "0 1 2 3 5"
- c["vlan1ports"] = "4 5"
- }
if (nvram["boardtype"] == "bcm94710r4") {
# Toshiba WRC-1000
c["lan_ifname"] = "eth0"
c["wan_ifname"] = "eth1"
}
- if (nvram["boardtype"] == "wgt634u") {
- c["vlan0ports"] = "0 1 2 3 5"
- c["vlan1ports"] = "4 5"
- }
- if (nvram["boardtype"] == "0x0467") {
+ if ((nvram["boardtype"] == "wgt634u") || (nvram["boardtype"] == "0x0467")) {
c["vlan0ports"] = "0 1 2 3 5"
c["vlan1ports"] = "4 5"
}