mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-09 12:21:33 +00:00
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
|
|
}
|