- move to sysutils/remote
This commit is contained in:
Stephan Raue
2010-04-28 20:41:48 +02:00
parent b842ef7571
commit 71ccc96ca7
7 changed files with 522 additions and 18 deletions

View File

@@ -1,18 +0,0 @@
# start the LIRC daemon
#
# runlevels: openelec, textmode
LIRC_DRIVER="default"
LIRC_DEVICE="/dev/lirc0"
LIRC_OUTPUT="/dev/lircd"
(
progress "Starting LIRC daemon"
$IONICE mkdir -p /var/run/lirc
lircd --driver=$LIRC_DRIVER \
--device=$LIRC_DEVICE \
--output=$LIRC_OUTPUT
)&

View File

@@ -0,0 +1,18 @@
# start the LIRC daemon
#
# runlevels: openelec, textmode
[ -f /storage/.config/remote.conf ] && . /storage/.config/remote.conf
if [ "$REMOTE_BACKEND" = "lirc" ]; then
progress "Starting LIRC daemon"
LIRC_DRIVER="default"
LIRC_DEVICE="/dev/lirc0"
LIRC_OUTPUT="/dev/lircd"
$IONICE mkdir -p /var/run/lirc
lircd --driver=$LIRC_DRIVER --device=$LIRC_DEVICE --output=$LIRC_OUTPUT
fi

File diff suppressed because it is too large Load Diff