Did you enable lircd in LE settings?
Just did a quick test, Milhouse build 0508 on RPi3, with some FTDI serial dongle, a lircd.conf file in .config and this lirc_options.conf and it worked fine:
Code
LibreELEC:~ # grep -v ^# .config/lirc_options.conf
[lircd]
nodaemon = False
driver = uirt2_raw
device = /dev/ttyUSB0
output = /run/lirc/lircd.socket
pidfile = /run/lirc/lircd.pid
plugindir = /usr/lib/lirc/plugins
permission = 666
allow-simulate = No
repeat-max = 600
[lircmd]
uinput = False
nodaemon = False
Display More
lircd and lircd-uinput started up fine:
Code
349 root 2:54 /usr/sbin/lircd -O /storage/.config/lirc_options.conf --nodaemon --release /storage/.config/lircd.conf
350 root 0:00 /usr/sbin/lircd-uinput -O /storage/.config/lirc_options.conf
But of course lircd was logging errors because there was no UIRT2 adapter connected:
Code
LibreELEC:~ # systemctl status lircd
● lircd.service - Flexible IR remote input/output application support
Loaded: loaded (/usr/lib/systemd/system/lircd.service; disabled; vendor preset: disabled)
Active: active (running) since Mon 2017-05-08 04:36:41 UTC; 1 day 14h ago
Docs: http://lirc.org/html/configure.html
Main PID: 349 (lircd)
CGroup: /system.slice/lircd.service
└─349 /usr/sbin/lircd -O /storage/.config/lirc_options.conf --nodaemon --release /storage/.config/lircd.conf
May 08 04:36:41 LibreELEC lircd-0.9.4d[349]: Notice: lircd(uirt2_raw) ready, using /run/lirc/lircd.socket
May 08 04:36:41 LibreELEC lircd-0.9.4d[349]: Notice: accepted new client on /run/lirc/lircd.socket
May 08 04:36:42 LibreELEC lircd_helper[349]: lircd-0.9.4d[349]: Error: uirt2_raw: did not receive results
May 08 04:36:42 LibreELEC lircd-0.9.4d[349]: Error: uirt2_raw: did not receive results
May 08 04:36:44 LibreELEC lircd_helper[349]: lircd-0.9.4d[349]: Error: uirt2_raw: did not receive results
May 08 04:36:44 LibreELEC lircd_helper[349]: lircd-0.9.4d[349]: Error: uirt2_raw: No UIRT2 device found at /dev/ttyUSB0
May 08 04:36:44 LibreELEC lircd-0.9.4d[349]: Error: uirt2_raw: did not receive results
May 08 04:36:44 LibreELEC lircd-0.9.4d[349]: Error: uirt2_raw: No UIRT2 device found at /dev/ttyUSB0
May 09 18:38:04 LibreELEC lircd_helper[349]: lircd-0.9.4d[349]: Warning: Failed to initialize hardware
May 09 18:38:04 LibreELEC lircd-0.9.4d[349]: Warning: Failed to initialize hardware
Display More
so long,
Hias