diff options
Diffstat (limited to 'obsolete-buildroot/sources/openwrt/root/etc')
-rw-r--r-- | obsolete-buildroot/sources/openwrt/root/etc/nvram.overrides | 29 | ||||
-rwxr-xr-x | obsolete-buildroot/sources/openwrt/root/etc/preinit | 2 |
2 files changed, 16 insertions, 15 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" +} diff --git a/obsolete-buildroot/sources/openwrt/root/etc/preinit b/obsolete-buildroot/sources/openwrt/root/etc/preinit index 1054282e8..62b20d986 100755 --- a/obsolete-buildroot/sources/openwrt/root/etc/preinit +++ b/obsolete-buildroot/sources/openwrt/root/etc/preinit @@ -3,7 +3,7 @@ mount none /proc -t proc insmod diag echo 0x01 > /proc/sys/diag sleep 1 -if /sbin/resetmon ; then +if [ $(cat /proc/sys/reset) = 1 ] ; then mtd unlock mtd4 mount -t jffs2 /dev/mtdblock/4 /jffs pivot_root /jffs /jffs/rom |