Emilio Pozuelo Monfort pushed to branch debian-unstable at X Strike Force / xserver / xorg-server
Commits:
-
f0b64b14
by Tobias Heider at 2024-10-13T20:42:48+02:00
2 changed files:
Changes:
1 | +From: Eric Curtin <ecurtin@redhat.com>
|
|
2 | +Date: Fri, 16 Dec 2022 11:10:12 +0000
|
|
3 | +Subject: config: add a quirk for Apple Silicon appledrm
|
|
4 | + |
|
5 | +Xorg server does not correctly select the DCP for the display without a
|
|
6 | +quirk on Apple Silicon.
|
|
7 | + |
|
8 | +Signed-off-by: Eric Curtin <ecurtin@redhat.com>
|
|
9 | +Suggested-by: Hector Martin <marcan@marcan.st>
|
|
10 | +---
|
|
11 | + config/10-quirks.conf | 10 ++++++++++
|
|
12 | + 1 file changed, 10 insertions(+)
|
|
13 | + |
|
14 | +diff --git a/config/10-quirks.conf b/config/10-quirks.conf
|
|
15 | +index 47907d8..54dd908 100644
|
|
16 | +--- a/config/10-quirks.conf
|
|
17 | ++++ b/config/10-quirks.conf
|
|
18 | +@@ -36,3 +36,13 @@ Section "InputClass"
|
|
19 | + MatchDriver "evdev"
|
|
20 | + Option "TypeName" "MOUSE"
|
|
21 | + EndSection
|
|
22 | ++
|
|
23 | ++# https://bugzilla.redhat.com/show_bug.cgi?id=2152414
|
|
24 | ++# Xorg server does not correctly select the DCP for the display without
|
|
25 | ++# a quirk on Apple Silicon
|
|
26 | ++Section "OutputClass"
|
|
27 | ++ Identifier "appledrm"
|
|
28 | ++ MatchDriver "apple"
|
|
29 | ++ Driver "modesetting"
|
|
30 | ++ Option "PrimaryGPU" "true"
|
|
31 | ++EndSection |
... | ... | @@ -6,3 +6,4 @@ |
6 | 6 | 06_use-intel-only-on-pre-gen4.diff
|
7 | 7 | 07_use-modesetting-driver-by-default-on-GeForce.diff
|
8 | 8 | 0001-ephyr-Fix-incompatible-pointer-type-build-error.patch
|
9 | +08_apple_silicon_config.diff |