You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
With the xserver-xorg-video-intel package currently in Ubuntu LTS 12.04.2 (exact version is 2.17.0-1ubuntu4.4), virtual-crtc.patch causes a segfault in the intel driver. This is because one of the more recent Ubuntu patches interferes with the virtual CRTC in a bad way. Here's a patch for the patch to patch the patch (SCNR);
diff -u xserver-xorg-video-intel-2.17.0/debian/patches/101_copy-fb.patch xserver-xorg-video-intel-2.17.0-new/debian/patches/101_copy-fb.patch
--- xserver-xorg-video-intel-2.17.0/debian/patches/101_copy-fb.patch 2013-07-04 08:13:09.000000000 +0200
+++ xserver-xorg-video-intel-2.17.0-new/debian/patches/101_copy-fb.patch 2013-07-04 07:50:21.779985220 +0200
@@ -143,7 +143,7 @@
+ fbcon_id = 0;
+ for (i = 0; i < xf86_config->num_crtc; i++) {
+ intel_crtc = xf86_config->crtc[i]->driver_private;
-+ if (intel_crtc->mode_crtc->buffer_id)
++ if (intel_crtc->mode_crtc && intel_crtc->mode_crtc->buffer_id)
+ fbcon_id = intel_crtc->mode_crtc->buffer_id;
+ }
+ if (!fbcon_id)
The text was updated successfully, but these errors were encountered:
With the xserver-xorg-video-intel package currently in Ubuntu LTS 12.04.2 (exact version is 2.17.0-1ubuntu4.4), virtual-crtc.patch causes a segfault in the intel driver. This is because one of the more recent Ubuntu patches interferes with the virtual CRTC in a bad way. Here's a patch for the patch to patch the patch (SCNR);
The text was updated successfully, but these errors were encountered: