this probably has your solution, unless you’ve already checked it out
Copypasta from the issue
I'll write the detailed steps for anyone else facing the same issue :
I created the following folders in my home directory :
sudo mkdir -p ~/test/usr/lib/firmware/edid
Copy the edid.bin file to the folder : cp ~/edid.bin ~/test/usr/lib/firmware/edid and to /usr/lib/firmware/edid/ : cp ~/edid.bin /usr/lib/firmware/edid
CD into test directory : cd ~/test and run this : find . | cpio -H newc -o | gzip >> ../my-initrd.img
The my-initrd.img file will be created in the home directory.
Create initrd.d folder : sudo mkdir -p /etc/kernel/initrd.d
Copy the initrd img file to initrd.d folder : sudo cp ~/my-initrd.img /etc/kernel/initrd.d and also add the kernel parameter drm.edid_firmware=eDP-1:edid/edid.bin to /etc/kernel/cmdline.d/edid.conf
Update clr-boot-manager : sudo clr-boot-manager update and reboot.