Go to file
Ludwig Nussel a7df7ef804 Accepting request 106181 from home:Fisiu:branches:vdr
- update to version 0.9.0:
  * Remove mceusb, streamzap, it8x, ene0100 drivers, as they're
    now redundant with upstream kernel drivers
  * fix oops unplugging igorplugusb receiver while in use
  * more error-checking for NULL irctl in various lirc_dev paths
  * add support for Monueal Moncaso IR to mplay driver
  * add another PNP device ID to lirc_it87
  * drop references to static chardev major number 61, we use dynamic
  * resync lirc_dev with what was merged in the kernel
  * reformat code using indent to look more like Linux kernel code
  * drop explicit support for kernels older than 2.6.18
  * adapt to using lirc.h as merged in the upstream linux kernel
  * non-LONG_IR_CODE option dropped, its been the default for years
  * use portable type definitions all over the place
  * drop an old GLIBC work-around for printing 64-bit values
  * fix timing-specific repeat-after-release issue
- drop lirc-0.8.7-lirc_h.diff and lirc-0.8.7-lirc_h_2.diff: fixed
  upstream
- clean spec file with spec-cleaner

- build with Igor Cesko receiver and transmitter diode support

OBS-URL: https://build.opensuse.org/request/show/106181
OBS-URL: https://build.opensuse.org/package/show/vdr/lirc?expand=0&rev=33
2012-02-21 12:28:51 +00:00
.gitattributes OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=1 2007-02-27 15:50:06 +00:00
51-lirc.rules OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=1 2007-02-27 15:50:06 +00:00
baselibs.conf OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=24 2009-05-27 23:30:59 +00:00
fix-remote-keys.pl OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=1 2007-02-27 15:50:06 +00:00
imon2_conf.patch OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=4 2007-04-23 21:19:51 +00:00
lirc-0.9.0.tar.bz2 Accepting request 106181 from home:Fisiu:branches:vdr 2012-02-21 12:28:51 +00:00
lirc.changes Accepting request 106181 from home:Fisiu:branches:vdr 2012-02-21 12:28:51 +00:00
lirc.spec Accepting request 106181 from home:Fisiu:branches:vdr 2012-02-21 12:28:51 +00:00
rc.lirc - fix the LIRCD_LISTENPORT setting (bnc#661841) 2011-01-10 08:14:59 +00:00
README.SUSE OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=24 2009-05-27 23:30:59 +00:00
sysconfig.lirc OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lirc?expand=0&rev=1 2007-02-27 15:50:06 +00:00

Quickstart guide for self made serial receivers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Please read /usr/share/doc/packages/lirc/html/install.html for
details.

Suppose you have a self made serial receiver as described in
http://www.lirc.org/receivers.html connected to the first serial
port serial port:

Ensure that the following values are set in /etc/sysconfig/lirc:

    LIRCD_DEVICE="/dev/lirc"
    LIRCD_DRIVER="default"
    LIRC_MODULE="lirc_serial"

Run the following command and add it at the end of
/etc/init.d/boot.local:

    setserial /dev/ttyS0 uart none

Load the kernel module for the serial receiver:

    modprobe lirc_serial


Run irrecord to assign names to keys on your remote. Move the
resulting config file to /etc/lircd.conf. Start lircd:

    rclirc start

If everything works (check with 'irw'), add lirc to the boot
process:

    chkconfig lirc on


Quickstart guide for remotes that show up as event devices
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The remotes of most DVB devices show up as event devices in
/dev/input/. If you have one of those

- check whether udev already created /dev/input/ir for you when you
  plugged in the device. Edit /etc/udev/rules.d/51-lirc.rules if it
  didn't. Unplug the device and plug it in again to make
  /dev/input/ir appear.

- cp /usr/share/lirc/remotes/devinput/lircd.conf.devinput /etc/lircd.conf

- rclirc start; chkconfig lirc on