Root/package/base-files/files/etc/init.d/watchdog

1#!/bin/sh /etc/rc.common
2# Copyright (C) 2008-2010 OpenWrt.org
3
4START=97
5start() {
6        [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
7            watchdog -t 5 /dev/watchdog
8}
9
10stop() {
11    killall -q watchdog
12}
13

Archive Download this file



interactive