debian/changelog | 9 +++++++++ debian/patches/173_edid_quirk_philips_lcd.patch | 21 +++++++++++++++++++++ debian/patches/series | 1 + 3 files changed, 31 insertions(+)
New commits: commit 14d2d9ea18f165a188afa74c98700b3c3010959e Author: Bryce Harrington <[email protected]> Date: Wed Apr 1 20:17:53 2009 -0700 Tormod's quirk patch for philips lcds diff --git a/debian/changelog b/debian/changelog index d646dd1..fa50bb0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +xorg-server (2:1.6.0-0ubuntu8) jaunty; urgency=low + + * Add 173_edid_quirk_philips_lcd.patch : + Quirk for wrongly reported screen dimensions. + Fixes "huge fonts" issues. + (LP: #353074) + + -- Tormod Volden <[email protected]> Wed, 01 Apr 2009 19:47:13 +0200 + xorg-server (2:1.6.0-0ubuntu7) jaunty; urgency=low * Add 172_cwgetbackingpicture_nullptr_check.patch: diff --git a/debian/patches/173_edid_quirk_philips_lcd.patch b/debian/patches/173_edid_quirk_philips_lcd.patch new file mode 100644 index 0000000..ba735bd --- /dev/null +++ b/debian/patches/173_edid_quirk_philips_lcd.patch @@ -0,0 +1,21 @@ +# +# Ubuntu: https://bugs.launchpad.net/bugs/353074 +# Upstream: http://bugs.freedesktop.org/show_bug.cgi?id=21000 +# + +Index: xorg-server-1.6.0/hw/xfree86/modes/xf86EdidModes.c +=================================================================== +--- xorg-server-1.6.0.orig/hw/xfree86/modes/xf86EdidModes.c 2009-04-01 19:45:23.000000000 +0200 ++++ xorg-server-1.6.0/hw/xfree86/modes/xf86EdidModes.c 2009-04-01 19:45:32.000000000 +0200 +@@ -155,6 +155,11 @@ + DDC->vendor.prod_id == 13600) + return TRUE; + ++ /* Bug #21000: LGPhilipsLCD LP154W01-TLAJ */ ++ if (memcmp (DDC->vendor.name, "LPL", 4) == 0 && ++ DDC->vendor.prod_id == 47360) ++ return TRUE; ++ + return FALSE; + } + diff --git a/debian/patches/series b/debian/patches/series index c654b2e..5b87ed5 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -29,3 +29,4 @@ 170_primary_pci_video_device.patch 171_xkb_geometry_copying.patch 172_cwgetbackingpicture_nullptr_check.patch +173_edid_quirk_philips_lcd.patch -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

