projects
/
openwrt
/
staging
/
florian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31548bf
)
add stop() to watchdog init script, patch from Yury Polyanskiy
author
Florian Fainelli
<
[email protected]
>
Mon, 3 May 2010 09:05:35 +0000
(09:05 +0000)
committer
Florian Fainelli
<
[email protected]
>
Mon, 3 May 2010 09:05:35 +0000
(09:05 +0000)
SVN-Revision: 21334
package/base-files/files/etc/init.d/watchdog
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/init.d/watchdog
b/package/base-files/files/etc/init.d/watchdog
index 861a1f9eb04d412c09bf376e83503183aa9fe846..e44cbb153e0160305890bcfbfdcc6f702d0b0fa4 100755
(executable)
--- 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
+}