Lost audio after upgrading to LE10. This appears to be caused by PulseAudio (I'm assuming PulseAudio somehow got enabled since LE10). I could get the audio to work again by launching LE10 with the following command:
That, however, caused the irtrans remote to stop working.
To resolve this, I modified /storage/.config/system.d/kodi.service as follows
Code
[Unit]
Description=Kodi Media Center
After=network-online.target graphical.target
Requires=graphical.target
Wants=network-online.target
[Service]
Environment=LIRC_SOCKET_PATH=/var/run/lirc/lircd.irtrans
Environment=KODI_AE_SINK=ALSA
Environment=__GL_YIELD=USLEEP
Environment=DISPLAY=:0.0
Environment=WAYLAND_DISPLAY=wayland-0
Environment=SDL_MOUSE_RELATIVE=0
Environment=HOME=/storage
Environment=KODI_TEMP=/storage/.kodi/temp
Environment=KODI_HOME=/usr/share/kodi/
EnvironmentFile=-/run/libreelec/kodi.conf
EnvironmentFile=-/run/libreelec/debug/kodi.conf
ExecStartPre=-/storage/.config/kodi-config
ExecStart=pasuspender -- /usr/lib/kodi/kodi.sh --standalone -fs $KODI_ARGS $KODI_DEBUG
ExecStop=/bin/kill -TERM $MAINPID
ExecStopPost=-/usr/lib/kodi/kodi-safe-mode
TimeoutStopSec=5
Restart=always
RestartSec=2
StartLimitInterval=0
LimitNOFILE=16384
[Install]
WantedBy=kodi.target
Display More
Note the added line below [Service]:
As well as the modified line ExecStart:
Solution also added to the original thread.