firmware/bsp/wr741nd4/root_file_system/etc/ath9k-watchdog
2013-02-17 11:24:35 +01:00

15 lines
136 B
Bash
Executable File

#!/bin/sh
logread -f | while read line
do
case "$line" in
*"Could not stop RX"*)
#Bye
/sbin/reboot
;;
*)
;;
esac
done