mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
There is a older version available at meta-guacamayo but its not distro specific and many distros might need it so meta-oe is right place for it. Change-Id: Ic6b45dd652187d72a1e1bf4fb5adc8ed9c80e52a Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
41 lines
975 B
Bash
41 lines
975 B
Bash
#! /bin/sh
|
|
#
|
|
# This is an init script for Familiar
|
|
# Copy it to /etc/init.d/lircd and type
|
|
# > update-rc.d lircd defaults 20
|
|
#
|
|
|
|
|
|
test -f /usr/sbin/lircd || exit 0
|
|
test -f /etc/lircd.conf || exit 0
|
|
|
|
case "$1" in
|
|
start)
|
|
echo -n "Starting lirc daemon: lircd"
|
|
start-stop-daemon --start --quiet --exec /usr/sbin/lircd -- --device=/dev/lirc0
|
|
echo "."
|
|
;;
|
|
stop)
|
|
echo -n "Stopping lirc daemon: lircd"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/lircd
|
|
echo "."
|
|
;;
|
|
reload|force-reload)
|
|
start-stop-daemon --stop --quiet --signal 1 --exec /usr/sbin/lircd
|
|
;;
|
|
restart)
|
|
echo -n "Stopping lirc daemon: lircd"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/lircd
|
|
sleep 1
|
|
echo -n "Starting lirc daemon: lircd"
|
|
start-stop-daemon --start --quiet --exec /usr/sbin/lircd -- --device=/dev/lirc0
|
|
echo "."
|
|
;;
|
|
*)
|
|
echo "Usage: /etc/init.d/lircd {start|stop|reload|restart|force-reload}"
|
|
exit 1
|
|
esac
|
|
|
|
exit 0
|
|
|