2015-11-01, 13:39
If you get a heavy log for us - also welcome - Basically I am interested in the "size" of the error.
(2015-11-01, 13:49)fritsch Wrote: It's not unclear.
(2015-11-01, 13:49)fritsch Wrote: Intel's libva-intel-driver can load this hybrid driver.
Problem is: Only Broadwell and Braswell are supported and it needs an ffmpeg hwaccel, which is not yet done.
(2015-11-01, 13:59)fritsch Wrote: E.g. see: http://www.howtogeek.com/227940/why-yout...to-fix-it/ and https://code.google.com/p/chromium/issue...399960#c33 - totally worthless on current hw generations.
fritsch@bsw:~$ cat /sys/class/drm/card0-HDMI-A-1/status
connected
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=HDMI-A-1:1920x1080@50D drm_kms_helper.edid_firmware=HDMI-A-1:edid/edid.bin"
sudo mkdir -p /lib/firmware/edid
sudo cp /sys/class/drm/card0-HDMI-A-1/edid /lib/firmware/edid/edid.bin
#!/bin/sh
PREREQ="udev"
prereqs()
{
echo "$PREREQ"
}
case $1 in
prereqs)
prereqs
exit 0
;;
esac
. /usr/share/initramfs-tools/hook-functions
# Begin real processing below this line
if [ ! -e "${DESTDIR}/lib/firmware/edid" ]; then
mkdir -p "${DESTDIR}/lib/firmware/edid"
fi
if [ -r "/lib/firmware/edid/edid.bin" ]; then
cp "/lib/firmware/edid/edid.bin" "${DESTDIR}/lib/firmware/edid/"
fi
manual_add_modules i915 radeon
exit 0
sudo chmod +x /etc/initramfs-tools/hooks/include-edid-data
sudo update-initramfs -u
sudo update-grub
sudo reboot