From: florian Date: Thu, 3 Apr 2008 14:36:10 +0000 (+0000) Subject: Start the watchdog daemon if a harware watchdog is present X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/8b820a5355f378dedab1f57ccfdc1e526fca7179 Start the watchdog daemon if a harware watchdog is present git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10721 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 000000000..0821c8f47 --- /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 +}