add failsafe support for atheros-2.6 (#1501) - only works with ar5315+ at the moment

SVN-Revision: 7870
This commit is contained in:
Felix Fietkau
2007-07-04 04:35:44 +00:00
parent e062f4185e
commit 114b9a8fb6
3 changed files with 17 additions and 4 deletions

View File

@@ -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
}