diff options
Diffstat (limited to 'obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides')
-rw-r--r-- | obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides b/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides index e334d7519..f59e78060 100644 --- a/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides +++ b/obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides @@ -1,22 +1,11 @@ # NVRAM overrides -# This file handles the NVRAM quirks of various hardware -# this is not a replacement for nvram. +# This file handles the NVRAM quirks of various hardware. +# +# THIS FILE IS NOT A REPLACEMENT FOR NVRAM # linksys bug has lan doing dhcp; force static lan_proto="static" -# failsafe if reset is held -[ "$FAILSAFE" = "true" ] && { - echo "### FAILSAFE MODE ####" - lan_ifname="br0" - lan_ifnames="vlan0 vlan2 eth1 eth2 eth3" - lan_ipaddr="192.168.1.1" - lan_netmask="255.255.255.0" - lan_hwaddr="00:0B:AD:0A:DD:00" - wan_ifname="none" - wifi_ifname="none" -} - # hacks for 1.x hardware [ "$(nvram get boardnum)" = "42" ] && \ [ "$(nvram get boardtype)" = "bcm94710dev" ] && { @@ -50,3 +39,15 @@ lan_proto="static" wan_ifname="vlan1" wan_proto="dhcp" } + +# failsafe if reset is held +[ "$FAILSAFE" = "true" ] && { + echo "### FAILSAFE MODE ####" + lan_ifname="br0" + lan_ifnames="vlan0 vlan2 eth1 eth2 eth3" + lan_ipaddr="192.168.1.1" + lan_netmask="255.255.255.0" + lan_hwaddr="00:0B:AD:0A:DD:00" + wan_ifname="none" + wifi_ifname="none" +} |