Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2022-11-03 19:13:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and      /work/SRC/openSUSE:Factory/.xorg-x11-server.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xorg-x11-server"

Thu Nov  3 19:13:40 2022 rev:411 rq:1032921 version:21.1.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2022-10-20 11:10:10.379832651 +0200
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-server.new.2275/xorg-x11-server.changes    
    2022-11-03 19:13:48.427874374 +0100
@@ -1,0 +2,13 @@
+Wed Nov  2 15:37:07 UTC 2022 - Stefan Dirsch <sndir...@suse.com>
+
+- removed N_Disable-HW-Cursor-for-cirrus-and-mgag200-kernel-modules.patch 
+  * meanwhile cirrus and mgag200 Kernel drivers have been rewritten
+    multiple times and no longer have (broken) hardware cursor
+
+-------------------------------------------------------------------
+Wed Nov  2 12:29:59 UTC 2022 - Thomas Zimmermann <tzimmerm...@suse.de>
+
+- u_xf86-Accept-devices-with-the-kernels-ofdrm-driver.patch
+  * Add workaround to support ofdrm
+
+-------------------------------------------------------------------

Old:
----
  N_Disable-HW-Cursor-for-cirrus-and-mgag200-kernel-modules.patch

New:
----
  u_xf86-Accept-devices-with-the-kernels-ofdrm-driver.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.ncCU1r/_old  2022-11-03 19:13:49.695881830 +0100
+++ /var/tmp/diff_new_pack.ncCU1r/_new  2022-11-03 19:13:49.703881877 +0100
@@ -213,8 +213,6 @@
 
 Patch104:       u_xorg-server-xdmcp.patch
 
-Patch115:       N_Disable-HW-Cursor-for-cirrus-and-mgag200-kernel-modules.patch
-
 Patch117:       xorg-x11-server-byte-order.patch
 
 Patch160:       u_vesa-Add-VBEDPMSGetCapabilities-VBEDPMSGet.patch
@@ -240,6 +238,7 @@
 Patch1910:      u_modesetting-Fix-dirty-updates-for-sw-rotation.patch
 
 Patch1920:      u_xf86-Accept-devices-with-the-hyperv_drm-driver.patch
+Patch1921:      u_xf86-Accept-devices-with-the-kernels-ofdrm-driver.patch
 
 Patch1930:      u_xfree86-activate-GPU-screens-on-autobind.patch
 
@@ -377,7 +376,6 @@
 %patch100 -p1
 #%patch101 -p1
 %patch104 -p1
-%patch115 -p1
 %patch117 -p1
 %patch160 -p1
 %patch208 -p1
@@ -404,6 +402,7 @@
 %patch1900 -p1
 %patch1910 -p1
 %patch1920 -p1
+%patch1921 -p1
 %patch1930 -p1
 %patch1940 -p1
 %patch1960 -p1

++++++ u_xf86-Accept-devices-with-the-kernels-ofdrm-driver.patch ++++++
>From a7029faa7da778f9bab88d417e85041c631c87e6 Mon Sep 17 00:00:00 2001
From: Thomas Zimmermann <tzimmerm...@suse.de>
Date: Wed, 18 May 2022 10:44:06 +0200
Subject: [PATCH] xf86: Accept devices with the kernels ofdrm driver

Add a workaround to accept devices of the kernel's ofdrm driver.
Makes Xorg work on Open Firmware's pre-configured display with the
DRM graphics stack.

Signed-off-by: Thomas Zimmermann <tzimmerm...@suse.de>
---
 hw/xfree86/common/xf86platformBus.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/xfree86/common/xf86platformBus.c 
b/hw/xfree86/common/xf86platformBus.c
index 071f44b2a..6a0c3177b 100644
--- a/hw/xfree86/common/xf86platformBus.c
+++ b/hw/xfree86/common/xf86platformBus.c
@@ -563,6 +563,9 @@ xf86platformProbeDev(DriverPtr drvp)
                     /* Accept the device if the driver is hyperv_drm */
                     if (strcmp(xf86_platform_devices[j].attribs->driver, 
"hyperv_drm") == 0)
                         break;
+                    /* Accept the device if the driver is ofdrm */
+                    if (strcmp(xf86_platform_devices[j].attribs->driver, 
"ofdrm") == 0)
+                        break;
                     /* Accept the device if the driver is simpledrm */
                     if (strcmp(xf86_platform_devices[j].attribs->driver, 
"simpledrm") == 0)
                         break;
-- 
2.38.0

Reply via email to