I've got an addon that runs in a Docker container and outputs video directly to /dev/vchiq. As a result I have to stop the Kodi service before launching the container so the video can be displayed. This process worked fine in LibreELEC 9 but in version 10 the splash screen seems to stay up and I don't see any video display. Does anyone know if anything changed in this regard for the new release? I was messing with the fbset command after stopping Kodi and I noticed the following:
LibreELEC 9: blank screen
Code
>>fbset
mode "1x1-0"
# D: 0.000 MHz, H: 0.000 kHz, V: 0.000 Hz
geometry 1 1 1 1 32
timings 0 0 0 0 0 0 0
accel false
rgba 8/16,8/8,8/0,8/24
endmode
LibreELEC 10: LibreELEC logo is displayed
Code
>>fbset
mode "1920x1080-0"
# D: 0.000 MHz, H: 0.000 kHz, V: 0.000 Hz
geometry 1920 1080 1920 1080 16
timings 0 0 0 0 0 0 0
accel true
rgba 5/11,6/5,5/0,0/0
endmode
My initia idea was to disable the splash screen but I have been unsuccessful in figuring out how. Any thoughts?