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 2026-03-06 18:16:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old) and /work/SRC/openSUSE:Factory/.xorg-x11-server.new.561 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xorg-x11-server" Fri Mar 6 18:16:05 2026 rev:447 rq:1336778 version:21.1.21 Changes: -------- --- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes 2026-01-17 21:41:59.052039776 +0100 +++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new.561/xorg-x11-server.changes 2026-03-06 18:16:07.790014095 +0100 @@ -7,0 +8,8 @@ +Tue Jan 6 17:01:35 UTC 2026 - Thomas Zimmermann <[email protected]> + +- Add u_xf86-Accept-devices-with-the-kernel-s-corebootdrm-dr.patch: Enables + Xorg to make use of the kernel's corebootdrm driver. Taken from upstream. See + the MR at https://. + (bsc#) + +------------------------------------------------------------------- New: ---- u_xf86-Accept-devices-with-the-kernel-s-corebootdrm-dr.patch ----------(New B)---------- New: - Add u_xf86-Accept-devices-with-the-kernel-s-corebootdrm-dr.patch: Enables Xorg to make use of the kernel's corebootdrm driver. Taken from upstream. See ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xorg-x11-server.spec ++++++ --- /var/tmp/diff_new_pack.w3OONU/_old 2026-03-06 18:16:12.674217765 +0100 +++ /var/tmp/diff_new_pack.w3OONU/_new 2026-03-06 18:16:12.678217932 +0100 @@ -234,6 +234,7 @@ Patch1921: u_xf86-Accept-devices-with-the-kernels-ofdrm-driver.patch Patch1922: u_xf86-Accept-devices-with-the-kernel-s-efidrm-driver.patch Patch1923: u_xf86-Accept-devices-with-the-kernel-s-vesadrm-driver.patch +Patch1924: u_xf86-Accept-devices-with-the-kernel-s-corebootdrm-dr.patch Patch1930: u_xfree86-activate-GPU-screens-on-autobind.patch @@ -388,6 +389,7 @@ %patch -P 1921 -p1 %patch -P 1922 -p1 %patch -P 1923 -p1 +%patch -P 1924 -p1 %patch -P 1930 -p1 %patch -P 1960 -p1 ++++++ u_xf86-Accept-devices-with-the-kernel-s-corebootdrm-dr.patch ++++++ >From c12cf4f5855ef2a33f4b9e932a1cbb4ebdfcdfbd Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann <[email protected]> Date: Tue, 6 Jan 2026 17:56:09 +0100 Subject: [PATCH] xf86: Accept devices with the kernel's corebootdrm driver Add a workaround to accept devices of the kernel's corebootdrm driver. Makes Xorg work on pre-configured displays with coreboot and the DRM graphics stack. Review of the corebootdrm driver happens at [1]. Signed-off-by: Thomas Zimmermann <[email protected]> Link: https://patchwork.freedesktop.org/series/159820/ # [1] Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2132> --- 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 c4657589e..51e56270e 100644 --- a/hw/xfree86/common/xf86platformBus.c +++ b/hw/xfree86/common/xf86platformBus.c @@ -577,6 +577,9 @@ xf86platformProbeDev(DriverPtr drvp) if (ServerIsNotSeat0()) { break; } else { + /* Accept the device if the driver is corebootdrm */ + if (strcmp(xf86_platform_devices[j].attribs->driver, "corebootdrm") == 0) + break; /* Accept the device if the driver is efidrm */ if (strcmp(xf86_platform_devices[j].attribs->driver, "efidrm") == 0) break; -- 2.53.0
