Hi,
I have a dual-boot (Ubuntu + LibreElec 11.0.4) NUC8i5BEK system with Yamaha AV Receiver and Sony Full-HD TV.
When I boot I have all devices turned off: the NUC turn all on via USB-CEC adapter.
But i get (randomly) a blank screen; to see LE screen I need to reboot (via Kore).
So I think I need a custom EDID file to load on boot. I followed the official instructions at https://wiki.libreelec.tv/configuration/edid :
- find connected device (card0-DP-1)
- create edid.cpio file
- save edid.cpio in /flash/
but then I need to load it via grub, configured in ubuntu partition.
This is my grub setup:
Code
menuentry "LibreELEC edid" {
search --no-floppy --set=root --fs-uuid e2a66b6d-xxxx-2396c0db69b3
linux /KERNEL boot=UUID=e2a66b6d-xxxx-2396c0db69b3 disk=UUID=3310112e-xxxx-571af07148af quiet initrd=/edid.cpio drm_kms_helper.edid_firmware=DP-1:edid/edid.bin video=DP-1:D
}
but the edid file is not loaded.
This is the dmesg log:
Code
# dmesg | grep edid
[ 0.000000] Command line: BOOT_IMAGE=/KERNEL boot=UUID=e2a66b6d-8b16-44a0-b051-2396c0db69b3 disk=UUID=3310112e-be99-4319-81ac-571af07148af quiet initrd=/edid.cpio drm_kms_helper.edid_firmware=DP-1:edid/edid.bin video=DP-1:D
[ 0.044097] Kernel command line: root=/dev/ram0 rdinit=/init usbcore.autosuspend=-1 BOOT_IMAGE=/KERNEL boot=UUID=e2a66b6d-8b16-44a0-b051-2396c0db69b3 disk=UUID=3310112e-be99-4319-81ac-571af07148af quiet initrd=/edid.cpio drm_kms_helper.edid_firmware=DP-1:edid/edid.bin video=DP-1:D
[ 0.044174] [drm] drm_kms_helper.edid_firmware is deprecated, please use drm.edid_firmware instead.
[ 0.645010] platform DP-1: Direct firmware load for edid/edid.bin failed with error -2
[ 0.645033] [drm:edid_load] *ERROR* Requesting EDID firmware "edid/edid.bin" failed (err=-2)
[ 0.868059] platform DP-1: Direct firmware load for edid/edid.bin failed with error -2
[ 0.868079] [drm:edid_load] *ERROR* Requesting EDID firmware "edid/edid.bin" failed (err=-2)
[ 0.949504] platform DP-1: Direct firmware load for edid/edid.bin failed with error -2
[ 0.949525] [drm:edid_load] *ERROR* Requesting EDID firmware "edid/edid.bin" failed (err=-2)
[ 13.499042] [drm] Got external EDID base block and 1 extension from "edid/edid.bin" for connector "DP-1"
Display More
Any help?
Thanks a lot,
tode