[package] add stop() to watchdog init script, patch from Yury Polyanskiy

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21334 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Florian Fainelli 2010-05-03 09:05:35 +00:00
parent c70f0ec79b
commit c01d02a015
1 changed files with 6 additions and 1 deletions

View File

@ -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
}