1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-26 22:31:06 +02:00

[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
This commit is contained in:
florian 2010-05-03 09:05:35 +00:00
parent 865fd07795
commit 8e61b43b86

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
}