From 20da5f495f7b3eb45490ec792ce8566c5f9b5a16 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Mon, 3 May 2010 09:05:35 +0000 Subject: [PATCH 1/1] add stop() to watchdog init script, patch from Yury Polyanskiy SVN-Revision: 21334 --- package/base-files/files/etc/init.d/watchdog | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index 861a1f9eb0..e44cbb153e 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,8 +1,13 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008 OpenWrt.org +# Copyright (C) 2008-2010 OpenWrt.org START=97 start() { [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \ watchdog -t 5 /dev/watchdog } + +stop() { + killall -q watchdog + [ -c /dev/watchdog ] && echo "V" > /dev/watchdog +} -- 2.25.1