mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
cfe1bc11ad
SVN-Revision: 18102
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
|
|
START=97
|
|
start() {
|
|
[ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
|
|
watchdog -t 5 /dev/watchdog
|
|
}
|