Package: xserver-xorg-video-intel Version: 2:2.3.2-2+lenny6 Severity: normal Tags: patch
The inter xorg driver does not work on asus eeetop (ET1602). It reports the following error: (EE) intel(0): SDVO: No active TMDS outputs (0x4000) Such a bug has been fixed in more recent xorg releases (see for example: [1] https://bugs.freedesktop.org/show_bug.cgi?id=11645 [2] http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/commit/?id=59b0fbb9be880d489374b141f818948a2721a2ef The patch described in [2] can be backported with a slight modification to xserver-xorg-video-intel 2:2.3.2-2+lenny6, (by replacing dev_priv->controlled_output with dev_priv->active_outputs), and indeed the X server will start on such hardware. --- xserver-xorg-video-intel.orig/src/i830_sdvo.c.orig 2009-03-16 22:18:27.000000000 +0100 +++ xserver-xorg-video-intel/src/i830_sdvo.c 2009-03-16 22:12:19.000000000 +0100 @@ -1320,6 +1320,14 @@ i830_sdvo_init(ScrnInfoPtr pScrn, int ou dev_priv->active_outputs = SDVO_OUTPUT_RGB1; output->subpixel_order = SubPixelHorizontalRGB; name_prefix="VGA"; + } else if (dev_priv->caps.output_flags & SDVO_OUTPUT_LVDS0) { + dev_priv->active_outputs = SDVO_OUTPUT_LVDS0; + output->subpixel_order = SubPixelHorizontalRGB; + name_prefix="LVDS"; + } else if (dev_priv->caps.output_flags & SDVO_OUTPUT_LVDS1) { + dev_priv->active_outputs = SDVO_OUTPUT_LVDS1; + output->subpixel_order = SubPixelHorizontalRGB; + name_prefix="LVDS"; } else { I think that this patch can be added safely into debian/patches. Sincerely. -- Package-specific info: VGA-compatible devices on PCI bus: 00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org