Hello community, here is the log from the commit of package xorg-x11-server for openSUSE:Factory checked in at 2013-03-18 09:54:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old) and /work/SRC/openSUSE:Factory/.xorg-x11-server.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xorg-x11-server", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes 2013-03-15 10:49:18.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes 2013-03-18 09:54:14.000000000 +0100 @@ -2,27 +1,0 @@ -Wed Mar 13 16:46:09 UTC 2013 - [email protected] - -- rebased u_aarch64-support.patch and reenabled it - -------------------------------------------------------------------- -Fri Mar 8 16:16:07 UTC 2013 - [email protected] - -- u_aarch64-support.patch: Basic support for aarch64 disabled for - the initial build of 1.14.0! - -------------------------------------------------------------------- -Wed Mar 6 22:19:38 UTC 2013 - [email protected] - -- Update to version 1.14.0: - Here's the 1.14 X server release; the last couple of weeks - yielded a couple of useful bug fixes, but nothing that earth - shattering. - + a bunch of fixes to the touch device - + a few fixes to the GPU hotplug bits - + software rendering speedups (due to using the new pixman APIs) - + elimination of a lot of warning messages (we've still too many) - + pointer barriers work - -There are lots of other fixes too, as always thanks to all who provided -patches, review and comments for this release! - -------------------------------------------------------------------- @@ -32,8 +4,0 @@ - -------------------------------------------------------------------- -Thu Feb 21 00:41:00 UTC 2013 - [email protected] - -- Update to version 1.14 RC2 1.13.99.902: - - + Remove upstreamed patches: - u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch (patch225) Old: ---- xorg-server-1.14.0.tar.bz2 New: ---- u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch xorg-server-1.13.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xorg-x11-server.spec ++++++ --- /var/tmp/diff_new_pack.kb6qlI/_old 2013-03-18 09:54:34.000000000 +0100 +++ /var/tmp/diff_new_pack.kb6qlI/_new 2013-03-18 09:54:34.000000000 +0100 @@ -17,8 +17,7 @@ Name: xorg-x11-server - -%define dirsuffix 1.14.0 +%define dirsuffix 1.13.2 %define vnc 0 Summary: X License: GPL-2.0+ and MIT @@ -176,7 +175,7 @@ Patch220: N_Use-external-tool-for-creating-backtraces-on-crashes.patch # PATCH-MISSING-TAG -- See http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines Patch222: N_sync-fix.patch - +Patch225: u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch Patch226: u_vgaHW-no-legacy.patch Patch227: u_init_framebuffer_base.patch Patch228: u_aarch64-support.patch @@ -296,6 +295,7 @@ #%patch220 -p1 ### patch222 might not be applicable anymore #%patch222 -p1 +%patch225 -p1 %patch226 -p0 %patch227 -p1 %patch228 -p1 ++++++ N_zap_warning_xserver.diff ++++++ --- /var/tmp/diff_new_pack.kb6qlI/_old 2013-03-18 09:54:34.000000000 +0100 +++ /var/tmp/diff_new_pack.kb6qlI/_new 2013-03-18 09:54:34.000000000 +0100 @@ -2,7 +2,7 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Config.c +++ xorg-server-1.12.1/hw/xfree86/common/xf86Config.c -@@ -680,6 +680,7 @@ typedef enum { +@@ -685,6 +685,7 @@ typedef enum { FLAG_NOTRAPSIGNALS, FLAG_DONTVTSWITCH, FLAG_DONTZAP, @@ -10,7 +10,7 @@ FLAG_DONTZOOM, FLAG_DISABLEVIDMODE, FLAG_ALLOWNONLOCAL, -@@ -717,6 +718,8 @@ static OptionInfoRec FlagOptions[] = { +@@ -721,6 +722,8 @@ static OptionInfoRec FlagOptions[] = { {0}, FALSE}, {FLAG_DONTZAP, "DontZap", OPTV_BOOLEAN, {0}, FALSE}, @@ -19,7 +19,7 @@ {FLAG_DONTZOOM, "DontZoom", OPTV_BOOLEAN, {0}, FALSE}, {FLAG_DISABLEVIDMODE, "DisableVidModeExtension", OPTV_BOOLEAN, -@@ -805,6 +805,7 @@ configServerFlags(XF86ConfFlagsPtr flags +@@ -807,6 +810,7 @@ configServerFlags(XF86ConfFlagsPtr flags xf86GetOptValBool(FlagOptions, FLAG_NOTRAPSIGNALS, &xf86Info.notrapSignals); xf86GetOptValBool(FlagOptions, FLAG_DONTVTSWITCH, &xf86Info.dontVTSwitch); xf86GetOptValBool(FlagOptions, FLAG_DONTZAP, &xf86Info.dontZap); @@ -31,12 +31,11 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Events.c +++ xorg-server-1.12.1/hw/xfree86/common/xf86Events.c -@@ -182,13 +182,25 @@ xf86ProcessActionEvent(ActionEvent actio +@@ -180,12 +180,25 @@ xf86ProcessActionEvent(ActionEvent actio DebugF("ProcessActionEvent(%d,%x)\n", (int) action, arg); switch (action) { case ACTION_TERMINATE: - if (!xf86Info.dontZap) { -- xf86Msg(X_INFO, "Server zapped. Shutting down.\n"); + if (xf86Info.dontZap) + break; + @@ -66,7 +65,7 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Globals.c +++ xorg-server-1.12.1/hw/xfree86/common/xf86Globals.c -@@ -108,6 +108,7 @@ xf86InfoRec xf86Info = { +@@ -104,6 +104,7 @@ xf86InfoRec xf86Info = { .autoVTSwitch = TRUE, .ShareVTs = FALSE, .dontZap = FALSE, @@ -78,7 +77,7 @@ =================================================================== --- xorg-server-1.12.1.orig/hw/xfree86/common/xf86Privstr.h +++ xorg-server-1.12.1/hw/xfree86/common/xf86Privstr.h -@@ -70,6 +70,7 @@ typedef struct { +@@ -68,6 +68,7 @@ typedef struct { Bool autoVTSwitch; Bool ShareVTs; Bool dontZap; ++++++ u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch ++++++ >From ec3ce5493ec00ca0a9304b705a58a40e364f88fb Mon Sep 17 00:00:00 2001 From: Stefan Dirsch <[email protected]> Date: Sun, 22 Jul 2012 12:29:51 +0200 Subject: [PATCH 3/3] Do not use intel driver on Poulsbo, Oaktrail, Medfield, CDV. IDs stolen from Kernel psb driver. --- hw/xfree86/common/xf86pciBus.c | 64 +++++++++++++++++++++++++++++++++++----- 1 files changed, 56 insertions(+), 8 deletions(-) diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c index a2c18eb..258988a 100644 --- a/hw/xfree86/common/xf86pciBus.c +++ b/hw/xfree86/common/xf86pciBus.c @@ -1147,14 +1147,62 @@ xf86VideoPtrToDriverList(struct pci_device *dev, driverList[0] = "i128"; break; case 0x8086: - if ((dev->device_id == 0x00d1) || (dev->device_id == 0x7800)) { - driverList[0] = "i740"; - } - else if (dev->device_id == 0x8108) { - break; /* "hooray" for poulsbo */ - } - else { - driverList[0] = "intel"; + switch (dev->device_id) + { + /* Intel i740 */ + case 0x00d1: + case 0x7800: + driverList[0] = "i740"; + break; + /* GMA500/Poulsbo */ + case 0x8108: + case 0x8109: + /* Try psb driver on Poulsbo - if available */ + driverList[0] = "psb"; + driverList[1] = "psb_drv"; + break; + /* GMA600/Oaktrail */ + case 0x4100: + case 0x4101: + case 0x4102: + case 0x4103: + case 0x4104: + case 0x4105: + case 0x4106: + case 0x4107: + /* Atom E620/Oaktrail */ + case 0x4108: + /* Medfield */ + case 0x0130: + case 0x0131: + case 0x0132: + case 0x0133: + case 0x0134: + case 0x0135: + case 0x0136: + case 0x0137: + /* GMA 3600/CDV */ + case 0x0be0: + case 0x0be1: + case 0x0be2: + case 0x0be3: + case 0x0be4: + case 0x0be5: + case 0x0be6: + case 0x0be7: + case 0x0be8: + case 0x0be9: + case 0x0bea: + case 0x0beb: + case 0x0bec: + case 0x0bed: + case 0x0bee: + case 0x0bef: + /* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */ + break; + default: + driverList[0] = "intel"; + break; } break; case 0x102b: -- 1.7.3.4 ++++++ u_aarch64-support.patch ++++++ --- /var/tmp/diff_new_pack.kb6qlI/_old 2013-03-18 09:54:34.000000000 +0100 +++ /var/tmp/diff_new_pack.kb6qlI/_new 2013-03-18 09:54:34.000000000 +0100 @@ -15,6 +15,24 @@ /* * Due to conflicts with "compiler.h", don't rely on <sys/io.h> to declare +@@ -511,7 +512,7 @@ xf86EnableIO(void) + #endif + } + close(fd); +-#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__s390__) && !defined(__arm__) && !defined(__m32r__) && !defined(__nds32__) ++#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__s390__) && !defined(__arm__) && !defined(__m32r__) && !defined(__nds32__) && !defined(__aarch64__) + if (ioperm(0, 1024, 1) || iopl(3)) { + if (errno == ENODEV) + ErrorF("xf86EnableIOPorts: no I/O ports found\n"); +@@ -540,7 +541,7 @@ xf86DisableIO(void) + #if defined(__powerpc__) + munmap(ioBase, 0x20000); + ioBase = NULL; +-#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__arm__) && !defined(__s390__) && !defined(__m32r__) && !defined(__nds32__) ++#elif !defined(__mc68000__) && !defined(__sparc__) && !defined(__mips__) && !defined(__sh__) && !defined(__hppa__) && !defined(__arm__) && !defined(__s390__) && !defined(__m32r__) && !defined(__nds32__) && !defined(__aarch64__) + iopl(0); + ioperm(0, 1024, 0); + #endif Index: xorg-server-1.13.2/include/servermd.h =================================================================== --- xorg-server-1.13.2.orig/include/servermd.h ++++++ xorg-server-1.14.0.tar.bz2 -> xorg-server-1.13.2.tar.bz2 ++++++ ++++ 62641 lines of diff (skipped) ++++++ xorg-server-provides ++++++ --- /var/tmp/diff_new_pack.kb6qlI/_old 2013-03-18 09:54:37.000000000 +0100 +++ /var/tmp/diff_new_pack.kb6qlI/_new 2013-03-18 09:54:37.000000000 +0100 @@ -1,4 +1,4 @@ -Provides: X11_ABI_XINPUT = 19.1 -Provides: X11_ABI_VIDEODRV = 14.1 +Provides: X11_ABI_XINPUT = 18.0 +Provides: X11_ABI_VIDEODRV = 13.1 Provides: X11_ABI_ANSIC = 0.4 Provides: X11_ABI_EXTENSION = 7.0 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
