forgot to add watchdog in last commit

This commit is contained in:
Bjoern Franke 2013-02-24 09:36:43 +01:00
parent 59304a1224
commit 055ab542a2
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
logread -f | while read line
do
case "$line" in
*"Failed to stop TX"*)
#reset wifi
wifi reset
#add batman-adv-if
batctl if add wlan0-1
;;
*)
;;
esac
done