firmware/bsp/wr741nd2/root_file_system/etc/ath9k-watchdog

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