mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
a259c4df1e
d/python-setuptools-73.0.1-x86_64-1.txz: Upgraded. d/rust-bindgen-0.70.1-x86_64-1.txz: Upgraded. n/ModemManager-1.22.0-x86_64-1.txz: Upgraded. n/dhcpcd-10.0.10-x86_64-1.txz: Upgraded. n/epic5-2.4-x86_64-1.txz: Upgraded. n/libqmi-1.34.0-x86_64-2.txz: Rebuilt. Build against libqrtr-glib with -Dqrtr=true. n/libqrtr-glib-1.2.2-x86_64-1.txz: Added. ModemManager-1.22.0 needs libqmi to be linked with this. x/xorg-server-21.1.13-x86_64-3.txz: Rebuilt. Patched changing a type from unsigned long to unsigned long long which fixes the black screen seen on 32-bit with the modesetting driver. Seems fine on 64-bit as well, so the patch is applied for all builds. The patch to default to modesetting for Intel graphics is restored (and the one for nouveau is kept as well). Thanks to Lenard Spencer for reporting that nouveau was also hitting this. Thanks to Petri Kaukasoina for the patch. x/xorg-server-xephyr-21.1.13-x86_64-3.txz: Rebuilt. x/xorg-server-xnest-21.1.13-x86_64-3.txz: Rebuilt. x/xorg-server-xvfb-21.1.13-x86_64-3.txz: Rebuilt.
15 lines
528 B
Diff
15 lines
528 B
Diff
--- ./hw/xfree86/drivers/modesetting/drmmode_display.c.orig 2024-04-12 12:17:00.000000000 -0500
|
|
+++ ./hw/xfree86/drivers/modesetting/drmmode_display.c 2024-08-21 12:42:00.586800840 -0500
|
|
@@ -63,9 +63,9 @@
|
|
void *pPixData);
|
|
|
|
static const struct drm_color_ctm ctm_identity = { {
|
|
- 1UL << 32, 0, 0,
|
|
- 0, 1UL << 32, 0,
|
|
- 0, 0, 1UL << 32
|
|
+ 1ULL << 32, 0, 0,
|
|
+ 0, 1ULL << 32, 0,
|
|
+ 0, 0, 1ULL << 32
|
|
} };
|
|
|
|
static Bool ctm_is_identity(const struct drm_color_ctm *ctm)
|