ramips: disable watchdog on sysupgrade

SVN-Revision: 27380
lede-17.01
Gabor Juhos 2011-07-03 15:01:43 +00:00
parent e70e6f6848
commit c9f3e7082f
1 changed files with 10 additions and 0 deletions

View File

@ -36,3 +36,13 @@ platform_do_upgrade() {
;;
esac
}
disable_watchdog() {
killall watchdog
( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
echo 'Could not disable watchdog'
return 1
}
}
append sysupgrade_pre_upgrade disable_watchdog