[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 17/18] hw/display: make ATI_VGA depend on PIXMAN
From: |
marcandre . lureau |
Subject: |
[PATCH v3 17/18] hw/display: make ATI_VGA depend on PIXMAN |
Date: |
Tue, 10 Oct 2023 11:38:29 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
configs/devices/mips64el-softmmu/default.mak | 2 +-
hw/display/Kconfig | 2 +-
hw/display/meson.build | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configs/devices/mips64el-softmmu/default.mak
b/configs/devices/mips64el-softmmu/default.mak
index d5188f7ea5..8d85607571 100644
--- a/configs/devices/mips64el-softmmu/default.mak
+++ b/configs/devices/mips64el-softmmu/default.mak
@@ -3,7 +3,7 @@
include ../mips-softmmu/common.mak
CONFIG_FULOONG=y
CONFIG_LOONGSON3V=y
-CONFIG_ATI_VGA=y
+# CONFIG_ATI_VGA=n
CONFIG_RTL8139_PCI=y
CONFIG_JAZZ=y
CONFIG_VT82C686=y
diff --git a/hw/display/Kconfig b/hw/display/Kconfig
index 1aafe1923d..4d8a6c4af8 100644
--- a/hw/display/Kconfig
+++ b/hw/display/Kconfig
@@ -125,7 +125,7 @@ config DPCD
config ATI_VGA
bool
default y if PCI_DEVICES
- depends on PCI
+ depends on PCI && PIXMAN
select VGA
select BITBANG_I2C
select DDC
diff --git a/hw/display/meson.build b/hw/display/meson.build
index 14a57703d3..4a10040c19 100644
--- a/hw/display/meson.build
+++ b/hw/display/meson.build
@@ -62,7 +62,7 @@ system_ss.add(when: 'CONFIG_XLNX_DISPLAYPORT', if_true:
files('xlnx_dp.c'))
system_ss.add(when: 'CONFIG_ARTIST', if_true: files('artist.c'))
-system_ss.add(when: [pixman, 'CONFIG_ATI_VGA'], if_true: files('ati.c',
'ati_2d.c', 'ati_dbg.c'))
+system_ss.add(when: 'CONFIG_ATI_VGA', if_true: [files('ati.c', 'ati_2d.c',
'ati_dbg.c'), pixman])
if config_all_devices.has_key('CONFIG_VIRTIO_GPU')
--
2.41.0
- [PATCH v3 06/18] qmp/hmp: disable screendump if PIXMAN is missing, (continued)
- [PATCH v3 06/18] qmp/hmp: disable screendump if PIXMAN is missing, marcandre . lureau, 2023/10/10
- [PATCH v3 10/18] ui/gl: opengl doesn't require PIXMAN, marcandre . lureau, 2023/10/10
- [PATCH v3 11/18] ui/vnc: VNC requires PIXMAN, marcandre . lureau, 2023/10/10
- [PATCH v3 07/18] virtio-gpu: replace PIXMAN for region/rect test, marcandre . lureau, 2023/10/10
- [PATCH v3 15/18] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN, marcandre . lureau, 2023/10/10
- [PATCH v3 12/18] ui/spice: SPICE/QXL requires PIXMAN, marcandre . lureau, 2023/10/10
- [PATCH v3 14/18] ui/dbus: do not require PIXMAN, marcandre . lureau, 2023/10/10
- [PATCH v3 16/18] hw/sm501: allow compiling without PIXMAN, marcandre . lureau, 2023/10/10
- [PATCH v3 18/18] build-sys: make pixman actually optional, marcandre . lureau, 2023/10/10
- [PATCH v3 17/18] hw/display: make ATI_VGA depend on PIXMAN,
marcandre . lureau <=
- [PATCH v3 13/18] ui/gtk: -display gtk requires PIXMAN, marcandre . lureau, 2023/10/10