diff -u libdrm-2.4.32/debian/changelog libdrm-2.4.32/debian/changelog --- libdrm-2.4.32/debian/changelog +++ libdrm-2.4.32/debian/changelog @@ -1,3 +1,11 @@ +libdrm (2.4.32-1ubuntu1.1) precise-proposed; urgency=low + + * Add 108-Add-support-for-IVB-GT2-server.patch: Backport a commit from a + later release that adds the Ivybridge Server GT2 PCI id used in newer + Xeon processors. (lp: #1091068) + + -- Robert Hooker Mon, 17 Dec 2012 13:36:46 -0500 + libdrm (2.4.32-1ubuntu1) precise; urgency=low [ Robert Hooker ] diff -u libdrm-2.4.32/debian/patches/series libdrm-2.4.32/debian/patches/series --- libdrm-2.4.32/debian/patches/series +++ libdrm-2.4.32/debian/patches/series @@ -7,0 +8 @@ +102-Add-support-for-IVB-GT2-server.patch only in patch2: unchanged: --- libdrm-2.4.32.orig/debian/patches/102-Add-support-for-IVB-GT2-server.patch +++ libdrm-2.4.32/debian/patches/102-Add-support-for-IVB-GT2-server.patch @@ -0,0 +1,36 @@ +From e057a56448e2e785f74bc13dbd6ead8572ebed91 Mon Sep 17 00:00:00 2001 +From: Eugeni Dodonov +Date: Fri, 30 Mar 2012 00:03:29 +0000 +Subject: intel: add Ivy Bridge GT2 server variant + +We were missing this one and it is being used by Bromolow. + +Signed-off-by: Eugeni Dodonov + +Modified to apply to libdrm 2.4.32 for precise. +Signed-off-by: Robert Hooker +--- +diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h +index 435d01a..9c1abc8 100644 +--- a/intel/intel_chipset.h ++++ b/intel/intel_chipset.h +@@ -44,6 +44,7 @@ + #define PCI_CHIP_IVYBRIDGE_M_GT1 0x0156 /* mobile */ + #define PCI_CHIP_IVYBRIDGE_M_GT2 0x0166 + #define PCI_CHIP_IVYBRIDGE_S 0x015a /* server */ ++#define PCI_CHIP_IVYBRIDGE_S_GT2 0x016a /* server */ + + #define PCI_CHIP_HASWELL_GT1 0x0402 /* Desktop */ + #define PCI_CHIP_HASWELL_GT2 0x0412 +@@ -128,7 +129,8 @@ + dev == PCI_CHIP_IVYBRIDGE_GT2 || \ + dev == PCI_CHIP_IVYBRIDGE_M_GT1 || \ + dev == PCI_CHIP_IVYBRIDGE_M_GT2 || \ +- dev == PCI_CHIP_IVYBRIDGE_S) ++ dev == PCI_CHIP_IVYBRIDGE_S || \ ++ dev == PCI_CHIP_IVYBRIDGE_S_GT2) + + #define IS_G4X(dev) (dev == 0x2E02 || \ + dev == 0x2E12 || \ +-- +cgit v0.9.0.2-2-gbebe