projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ramips: add support for the Senao/EnGenius ESR-9753 board
[openwrt.git]
/
package
/
base-files
/
files
/
etc
/
init.d
/
watchdog
diff --git
a/package/base-files/files/etc/init.d/watchdog
b/package/base-files/files/etc/init.d/watchdog
index
65a45e5
..
299c891
100755
(executable)
--- a/
package/base-files/files/etc/init.d/watchdog
+++ b/
package/base-files/files/etc/init.d/watchdog
@@
-1,12
+1,13
@@
#!/bin/sh /etc/rc.common
#!/bin/sh /etc/rc.common
-# Copyright (C) 2008-201
0
OpenWrt.org
+# Copyright (C) 2008-201
1
OpenWrt.org
START=97
START=97
+
start() {
start() {
- [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
- watchdog -t 5 /dev/watchdog
+ [ -c /dev/watchdog ] || return 1
+ [ -x /sbin/watchdog ] || return 1
+ service_start /sbin/watchdog -t 5 /dev/watchdog
}
}
-
stop() {
stop() {
-
killall -q
watchdog
+
service_stop /sbin/
watchdog
}
}
This page took
0.025153 seconds
and
4
git commands to generate.