summaryrefslogtreecommitdiff
path: root/openwrt/target/default
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-02-17 23:19:24 +0000
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-02-17 23:19:24 +0000
commiteb77566679ef2b46444f389de12546bdaa1025a4 (patch)
tree4d867dee32531d71b8cddedb1c37f1d304f128fc /openwrt/target/default
parentf33adbaae849627c2ee993d34d7119b24788cb71 (diff)
downloadmtk-20170518-eb77566679ef2b46444f389de12546bdaa1025a4.zip
mtk-20170518-eb77566679ef2b46444f389de12546bdaa1025a4.tar.gz
mtk-20170518-eb77566679ef2b46444f389de12546bdaa1025a4.tar.bz2
support for Asus WL-500g
SVN-Revision: 253
Diffstat (limited to 'openwrt/target/default')
-rw-r--r--openwrt/target/default/target_skeleton/etc/nvram.overrides15
1 files changed, 14 insertions, 1 deletions
diff --git a/openwrt/target/default/target_skeleton/etc/nvram.overrides b/openwrt/target/default/target_skeleton/etc/nvram.overrides
index acbba30..addfedd 100644
--- a/openwrt/target/default/target_skeleton/etc/nvram.overrides
+++ b/openwrt/target/default/target_skeleton/etc/nvram.overrides
@@ -3,6 +3,11 @@
# This file handles the NVRAM quirks of various hardware.
# THIS FILE IS NOT A REPLACEMENT FOR NVRAM
+[ "$(nvram get boardnum)" = "asusX" ] && \
+ [ "$(nvram get boardtype)" = "bcm94710dev" ] && {
+ asus=1
+}
+
# linksys bug; remove when not using static configuration for lan
NVRAM_lan_proto="static"
@@ -37,16 +42,24 @@ NVRAM_lan_proto="static"
FAILSAFE_ifnames="eth0 eth1"
}
+# hack for asus wl-500g hardware
+[ $asus ] && {
+ FAILSAFE_lan_ifnames="eth0 eth2"
+}
+
# defaults if lan_ifname is missing
[ -z "$(nvram get lan_ifname)" ] && {
NVRAM_lan_ifname="br0"
- NVRAM_lan_ifnames="vlan0 vlan2 eth1 eth2 eth3"
+ NVRAM_lan_ifnames=${FAILSAFE_lan_ifnames:-"vlan0 vlan2 eth1 eth2 eth3"}
}
# defaults if wan_ifname is missing
[ -z "$(nvram get wan_ifname)" ] && {
NVRAM_wan_ifname="vlan1"
NVRAM_wan_proto="dhcp"
+ [ "$asus" ] && {
+ NVRAM_wan_ifname="eth1"
+ }
}
# failsafe if reset is held