aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/atheros-2.6
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-07-04 04:35:44 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-07-04 04:35:44 +0000
commit114b9a8fb6f2678ff3876cbba012ad5c5078ce8c (patch)
treee8a6fb12935c30348f5ee2a59a56b57e99956d3d /target/linux/atheros-2.6
parente062f4185e15b1f04098580a85f4d39cb0a43f8e (diff)
downloadupstream-114b9a8fb6f2678ff3876cbba012ad5c5078ce8c.tar.gz
upstream-114b9a8fb6f2678ff3876cbba012ad5c5078ce8c.tar.bz2
upstream-114b9a8fb6f2678ff3876cbba012ad5c5078ce8c.zip
add failsafe support for atheros-2.6 (#1501) - only works with ar5315+ at the moment
SVN-Revision: 7870
Diffstat (limited to 'target/linux/atheros-2.6')
-rwxr-xr-xtarget/linux/atheros-2.6/base-files/default/etc/preinit.arch8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/linux/atheros-2.6/base-files/default/etc/preinit.arch b/target/linux/atheros-2.6/base-files/default/etc/preinit.arch
new file mode 100755
index 0000000000..7e911ab2ad
--- /dev/null
+++ b/target/linux/atheros-2.6/base-files/default/etc/preinit.arch
@@ -0,0 +1,8 @@
+# reset button only supported on ar5315+ at the moment
+grep 'Atheros AR231[567]' /proc/cpuinfo > /dev/null && {
+ ifname=eth0
+ failsafe_ip
+ netmsg 192.168.1.255 "Press reset now, to enter Failsafe!"
+ ifconfig "$ifname" 0.0.0.0 down
+ sleep 2
+}