repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
linux-headers: bump 4.{4, 9}.x series
[buildroot-gz.git]
/
package
/
busybox
/
S15watchdog
blob
470c6d7301d054cccc53c27af8c9baac906c42ae
1
#!/bin/sh
2
#
3
# Start watchdog
4
#
5
6
case
"
$1
"
in
7
start
)
8
echo
"Starting watchdog..."
9
watchdog
-t
PERIOD
/
dev
/
watchdog
10
;;
11
stop
)
12
;;
13
restart|reload
)
14
;;
15
*)
16
echo
"Usage:
$0
{start|stop|restart}"
17
exit
1
18
esac
19
20
exit
$?