blob: 6613f4c58faa53e153de74433892d83972b95150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# debian init script /etc/init.d/activy for activy
# modified for x-vdr
source /etc/default/vdr
[ "$alcd" = "on" ] || exit
case "$1" in
start)
echo "Setting activy keys and display"
$VDRSCRIPTDIR/activy_msg.sh "Starting system ..." ""
$VDRSCRIPTDIR/activy.sh
;;
stop)
echo "Clear activy display"
$VDRSCRIPTDIR/activy_pb.sh
$VDRSCRIPTDIR/activy_msg.sh "" ""
printf "\xF0\xFF" > /dev/ttyS0
;;
esac
exit 0
|