mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 06:19:43 +02:00
60d3bc02ce
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25883 3c298f89-4303-0410-b956-a3cf2f4a3e73
18 lines
373 B
Bash
Executable File
18 lines
373 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2008-2010 OpenWrt.org
|
|
|
|
START=25
|
|
|
|
start() {
|
|
[ -c /dev/watchdog -a -x /sbin/watchdog ] || {
|
|
echo "WARNING: Watchdog not available. System will reboot soon!"
|
|
return 1
|
|
}
|
|
/sbin/watchdog -T 63 -t 50 /dev/watchdog
|
|
[ -x /usr/bin/schedtool ] && /usr/bin/schedtool -R -p 60 -n -20 $(pidof watchdog)
|
|
}
|
|
|
|
stop() {
|
|
killall -q watchdog
|
|
}
|