I don't know. Over the last years the issue popped up and vanished several times.
Posts by mglae
-
-
-
Is the autostart still needed? There is no real difference to the service.
es I've read it but did not understood this part:
As said, the wiki is outdated. lircd is started by the existence of /storage.config/lircd.conf. The remaining
looks OK although I've never used lircd.
The log shows issues in the lircd.conf:
CodeAug 19 08:25:27.807773 LibreELEC lircd-0.10.1[885]: Notice: /storage/.config/lircd.conf: devinput: Multiple definitions of: KEY_PAUSE Aug 19 08:25:27.807894 LibreELEC lircd-0.10.1[885]: Notice: /storage/.config/lircd.conf: devinput: Multiple values for same code: KEY_PAUSE Aug 19 08:25:27.808011 LibreELEC lircd-0.10.1[885]: Notice: /storage/.config/lircd.conf: devinput: Multiple values for same code: KEY_RECORD [...]and remote.xml:
Code2021-08-19 08:25:32.546 T:925 INFO <general>: Loading special://masterprofile/keymaps/remote.xml 2021-08-19 08:25:32.549 T:925 ERROR <general>: Keymapping error: no such action 'xbmc.quit()' defined 2021-08-19 08:25:32.549 T:925 ERROR <general>: Keymapping error: no such action 'xbmc.activatewindow(myvideos)' defined 2021-08-19 08:25:32.549 T:925 ERROR <general>: Keymapping error: no such action 'xbmc.activatewindow(mymusic)' defined [...] -
killall is not working as expected, systemd will restart the services. Use systemd stop eventlircd;systemd stop lircd if really needed.
Did you read https://wiki.libreelec.tv/configuration/ir-remotes? Although it is outdated in the point that lircd today is only enabled by the existence of lircd.conf.
As usual providing logs via pastekodi may produce more feedback.
-
projectM is only available for Generic.
-
-
atric.rules.txt and lircd.conf.txt are using DOS line endings and do likely not work in LE.
-
Kodi working without audio device might be nice to have but no real bug.
From the web page Line Out is missing on your device.
As a guess: Try selecting pulseaudio in Kodi. Maybe wit a null device added by pacmd load-module module-null-sink sink_name=MySink.
-
Code
2021-08-14 07:27:28.069 T:991 INFO <general>: CAESinkALSA - Unable to open device "default" for playback 2021-08-14 07:27:28.131 T:991 DEBUG <general>: CAESinkALSA - HDMI device "hdmi:CARD=PCH,DEV=0" may be unconnected (no ELD data) 2021-08-14 07:27:28.132 T:991 DEBUG <general>: CAESinkALSA - HDMI device "hdmi:CARD=PCH,DEV=1" may be unconnected (no ELD data) 2021-08-14 07:27:28.132 T:991 DEBUG <general>: CAESinkALSA - HDMI device "hdmi:CARD=PCH,DEV=2" may be unconnected (no ELD data) 2021-08-14 07:27:28.133 T:991 DEBUG <general>: CAESinkALSA - HDMI device "hdmi:CARD=PCH,DEV=3" may be unconnected (no ELD data) 2021-08-14 07:27:28.133 T:991 DEBUG <general>: CAESinkALSA - HDMI device "hdmi:CARD=PCH,DEV=4" may be unconnected (no ELD data)There are no audio devices detected. What are you using?
HDMI#2 seem to be connected. xrandr --verbose|paste may show more details.
For the failing pastekodi use pastekodi -c >mylog and put the file manually to a paste site.
-
Generic is using X11. Try xrandr instead.
-
-
You can order the systemd services with Before= and After=.
-
Mounting in autostart.sh is to late.
Switch to systemd mount, see /storage/.config/system.d/nfs.mount.sample and add Before=service.multimedia.vdr-addon.service.
-
On LE9 there is only the English vdr OSD.
On LE10 install and configure the Locale Addon.
-
Regulatory Domain is set correctly. Please check with iw reg get.
In LibreELEC-Settings some language codes including DE and SE are not detected. Fix will coming soon.
-
The package is build with empty CXXFLAGS and LFLAGS.
-
PKG_MAKE_OPTS_TARGET="CXXFLAGS=$CXXFLAGS LDFLAGS=$LDFLAGS AUDIO="""
This is not working as expected, see packages/readme.mk:
Code
Display MoreFurther to this, toolchain variables that are defined in `setup_toolchain()` must not be referenced "globally" in the package as they will only be configured reliably after `setup_toolchain()` has been called during `scripts/build`. Any variable in the following list must instead be referenced in a package function such as `pre_build_*`, `pre_configure_*`, `pre_make_*` etc.: ``` TARGET_CFLAGS TARGET_CXXFLAGS TARGET_LDFLAGS NINJA_OPTS MAKEFLAGS DESTIMAGE CC CXX CPP LD AS AR NM RANLIB OBJCOPY OBJDUMP STRIP CPPFLAGS CFLAGS CXXFLAGS LDFLAGS PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR PKG_CONFIG_SYSROOT_DIR PKG_CONFIG_ALLOW_SYSTEM_CFLAGS PKG_CONFIG_ALLOW_SYSTEM_LIBS CMAKE_CONF CMAKE HOST_CC HOST_CXX HOSTCC HOSTCXX CC_FOR_BUILD CXX_FOR_BUILD BUILD_CC BUILD_CXX _python_sysroot _python_prefix _python_exec_prefix -