<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
I had a simmilar issue with lirc and Fedora 18. Basically it is now started by systemd and your old configuration in /etc/sysconfig/lirc is no longer used. What you need to do is modify  /usr/lib/systemd/system/lirc.service to correctly start lirc on boot.<br>


This is an example from one of my machines (It&#39;s using an old Compro PVR card). You will need to set the appropriate device name for your system.<br>
-------------------------<br>
[Unit]<br>
Description=LIRC Infrared Signal Decoder<br>
After=network.target<br>
<br>
[Service]<br>
Type=forking<br>
PIDFile=/run/lirc/lircd.pid<br>
ExecStart=/usr/sbin/lircd --driver=devinput --device=name=saa7134?IR?(Compro?Videomate?DV<br>
<br>
[Install]<br>
WantedBy=multi-user.target<br>
-----------------------<br>
<br>
To enable lirc use:<br>
systemctl enable lirc<br>
systemctl start lirc<br>
<br>
Regards<br>
<br>
Peter<br>
<br></blockquote><div>Thanks.  How do I figure out my device name? <br><br></div><div>This is the output from cat /proc/bus/input/devices (is the device name &quot;i2c IR (Hauppauge WinTV PVR-350&quot; with or without the quotes?).<br>

<br>I: Bus=0018 Vendor=0000 Product=0000 Version=0000<br>N: Name=&quot;i2c IR (Hauppauge WinTV PVR-350&quot;<br>P: Phys=i2c-0/0-0018/ir0<br>S: Sysfs=/devices/virtual/rc/rc0/input2<br>U: Uniq=<br>H: Handlers=kbd event2<br>

B: PROP=0<br>B: EV=100013<br>B: KEY=10afc312 2142017 0 0 0 0 118000 41a8 4801 9e16c0 0 0 10000ffc<br>B: MSC=10<br><br><br></div></div></div></div>