summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/runit-scripts-mv/runitscripts/services/lircd/run
blob: 769c229721cd2b1b810b0836e26b8d0683abaf89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/bin/bash

exec 2>&1
export TERM=linux
. /etc/rc.conf
. /etc/rc.d/functions

#since what we do may not be enough
#if your one of those people, this is where you place your stuff

LOG=/tmp/lirc.log

if [ -f $LOG ]
then
    rm -f $LOG
fi

if [ -f /etc/runit/lirc.sh ]
then
    #program must not terminate.

    stat_runit "Starting lirc"
	
    /etc/runit/lirc.sh
else
    . /etc/systemconfig
    stat_runit "Starting lirc"

    [ -e /etc/sv/lircd/.runtime ] || mkdir -p /etc/sv/lircd/.runtime

    function dvico_detect {
        if [ x$Remotetype = "xdvico" ] || [ x$Remotetype = "xDvico-Dual-Digital4-rev2" ]
        then
            RunDvico=true
        else
            RunDvico=false
        fi
    }

    num_lirc=`ls -la /dev/lirc[0-9] 2>/dev/null |wc -l `
    num_lirc=$((num_lirc-1))

    serial_port=""

    if [ x$ReceiverType = xSerial ]
    then
        serial_port=$ReceiverSerialport
    elif [ x$HostBlasterType = xSerial ]
    then
        serial_port=$HostSerialPort_blasterlirc
    fi

    if [ -n "$serial_port" ]
    then
        #/dev/ttyS0 (COM1), port 0x3f8, irq 4
        #/dev/ttyS1 (COM2), port 0x2f8, irq 3
    	#/dev/ttyS2 (COM3), port 0x3e8, irq 4
    	#/dev/ttyS3 (COM4), port 0x2e8, irq 3

        case $serial_port in
        ttyS0)
               FLAGS="io=0x3f8  irq=4"
               ;;
        ttyS1)
               FLAGS="io=0x2f8  irq=3"
               ;;
        ttyS2)
               FLAGS="io=0x3e8  irq=4"
               ;;
        ttyS3)
               FLAGS="io=0x2e8  irq=3"
               ;;
        esac
        /usr/bin/setserial /dev/serial_port uart none
	sleep 0.5
        /sbin/modprobe lirc_serial $FLAGS
	sleep 0.5
    fi

    dvico_detect

    if [ x$HostBlasterType = xCommandIR -o x$ReceiverType = xCommandIR ]
    then
        CMD="/usr/sbin/lircd -n  --driver=commandir"
	printhl "	Using commandir"
        $CMD >>$LOG 2>>$LOG
#echo $CMD
    elif [  x$HostBlasterType = xiguanaIR-usb -o x$ReceiverType = xiguanaIR-usb ]
    then
	sv start igdaemon
        CMD="/usr/sbin/lircd -n  --driver=iguanaIR"
	printhl "       Using iguanaIR usb"
#echo $CMD
        $CMD >>$LOG 2>>$LOG
    else
        LASTCMD=""

        for i in `seq 1 $num_lirc`
        do
            CMD="/usr/sbin/lircd -d /dev/lirc$i --output=/dev/lircd$i --pidfile=/var/run/lircd$i.pid --listen=876$i"
	    printhl "	Device $i"
#echo $CMD
            $CMD >>$LOG 2>>$LOG
            LASTCMD="--connect=localhost:876$i   $LASTCMD    "
        done

	if [ $RunDvico = "true" ]
	then
	    if [ x$Remotetype = "xdvico" ]
            then
                LCMD="/usr/sbin/lircd -n -d /dev/usb/dvicoIR --driver=dvico  --output /dev/lircd"
            else
                LCMD="/usr/sbin/lircd -n -d /dev/input/irremote --driver=devinput  --output /dev/lircd"
            fi

	    if [ $num_lirc -lt 0 ]
	    then
		# Only run Dvico
		printhl "   Device $Remotetype"
#echo $LCMD
            	exec $LCMD >>$LOG 2>>$LOG
	    elif [ $num_lirc -gt -1  ]
	    then
                i=$((i+1))
                CMD="$LCMD --output=/dev/lircd$i --pidfile=/var/run/lircd$i.pid --listen=876$i"
                $CMD >> $LOG
                LASTCMD="--connect=localhost:876$i   $LASTCMD    "
	        printhl "	Device Dvico"
		/usr/sbin/lircd -n -d /dev/lirc0 --output /dev/lircd  $LASTCMD  >>$LOG 2>>$LOG
	    fi
	else
	    LCMD="/usr/sbin/lircd -n -d /dev/lirc0 --output /dev/lircd  $LASTCMD"
#echo $LCMD
     	    exec $LCMD >>$LOG 2>>$LOG
	fi
    fi
fi