diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-04 04:35:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-04 04:35:44 +0000 |
commit | 114b9a8fb6f2678ff3876cbba012ad5c5078ce8c (patch) | |
tree | e8a6fb12935c30348f5ee2a59a56b57e99956d3d /package/base-files/files/etc/preinit | |
parent | e062f4185e15b1f04098580a85f4d39cb0a43f8e (diff) | |
download | upstream-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 'package/base-files/files/etc/preinit')
-rwxr-xr-x | package/base-files/files/etc/preinit | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/base-files/files/etc/preinit b/package/base-files/files/etc/preinit index 8163f79ae6..c11732f7a7 100755 --- a/package/base-files/files/etc/preinit +++ b/package/base-files/files/etc/preinit @@ -3,7 +3,16 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin . /etc/diag.sh +failsafe_ip() { + ifconfig $ifname 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255 up +} + failsafe() { + [ -n "$ifname" ] && grep "$ifname" /proc/net/dev >/dev/null && { + failsafe_ip + netmsg 192.168.1.255 "Entering Failsafe!" + telnetd -l /bin/login <> /dev/null 2>&1 + } lock /tmp/.failsafe ash --login } |