6e2b80968f
[Thomas: - add BR2_USE_MMU dependency, since fork() is used - rename do_start() and do_stop() to just start() and stop(), as we do in most init scripts in Buildroot.] Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
41 lines
980 B
Bash
Executable File
41 lines
980 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NAME=thd
|
|
DAEMON=/usr/sbin/$NAME
|
|
PIDFILE=/var/run/$NAME.pid
|
|
DAEMON_ARGS="--daemon --triggers /etc/triggerhappy/triggers.d --socket /var/run/thd.socket --pidfile $PIDFILE --user nobody /dev/input/event*"
|
|
|
|
# Sanity checks
|
|
test -x $DAEMON || exit 0
|
|
|
|
[ -r /etc/default/triggerhappy ] && . /etc/default/triggerhappy
|
|
|
|
start() {
|
|
echo -n "Starting $NAME: "
|
|
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS \
|
|
&& echo "OK" || echo "FAIL"
|
|
}
|
|
|
|
stop() {
|
|
echo -n "Stopping $NAME: "
|
|
start-stop-daemon --stop --quiet --pidfile $PIDFILE \
|
|
&& echo "OK" || echo "FAIL"
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
stop
|
|
sleep 1
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|