From: juhosg Date: Sun, 3 Jul 2011 15:01:43 +0000 (+0000) Subject: ramips: disable watchdog on sysupgrade X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=9589c35dd38fe2c3775037eb33451c075fa24b58;p=openwrt.git ramips: disable watchdog on sysupgrade git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27380 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index c541ea0a13..b701938f25 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -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