diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-04-03 14:36:10 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-04-03 14:36:10 +0000 |
commit | dd2afbeee3b7cb99b65585e5bacdcd403c51996e (patch) | |
tree | 817d252da8725bb20764c60e93600ed2fcd96c0c | |
parent | ddc83122673b8bcc7cb3a2217ccc5964977ed5ce (diff) | |
download | upstream-dd2afbeee3b7cb99b65585e5bacdcd403c51996e.tar.gz upstream-dd2afbeee3b7cb99b65585e5bacdcd403c51996e.tar.bz2 upstream-dd2afbeee3b7cb99b65585e5bacdcd403c51996e.zip |
Start the watchdog daemon if a harware watchdog is present
SVN-Revision: 10721
-rwxr-xr-x | package/base-files/files/etc/init.d/watchdog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog new file mode 100755 index 0000000000..0821c8f475 --- /dev/null +++ b/package/base-files/files/etc/init.d/watchdog @@ -0,0 +1,7 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2008 OpenWrt.org + +START=97 +start() { + [ -f /dev/watchtog ] && watchdog -t 5 /dev/watchdog +} |