From: BALATON Zoltan <balaton@eik.bme.hu>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org, "Eric Blake" <eblake@redhat.com>,
qemu-arm@nongnu.org, "Markus Armbruster" <armbru@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
qemu-ppc@nongnu.org, "Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Dr. David Alan Gilbert" <dave@treblig.org>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>
Subject: Re: [PATCH v3 17/18] hw/display: make ATI_VGA depend on PIXMAN
Date: Tue, 10 Oct 2023 13:51:56 +0200 (CEST) [thread overview]
Message-ID: <074ec11f-30a0-a70e-fd24-d264925a1df9@eik.bme.hu> (raw)
In-Reply-To: <20231010073830.606570-18-marcandre.lureau@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1841 bytes --]
On Tue, 10 Oct 2023, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: BALATON Zoltan <balaton@eik.bme.hu>
> ---
> 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')
>
next prev parent reply other threads:[~2023-10-10 11:53 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-10 7:38 [PATCH v3 00/18] Make Pixman an optional dependency marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 01/18] build-sys: add a "pixman" feature marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 02/18] ui: compile out some qemu-pixman functions when !PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 03/18] ui: add pixman-compat.h marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 04/18] ui/console: allow to override the default VC marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 05/18] ui/vc: console-vc requires PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 06/18] qmp/hmp: disable screendump if PIXMAN is missing marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 07/18] virtio-gpu: replace PIXMAN for region/rect test marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 08/18] ui/console: when PIXMAN is unavailable, don't draw placeholder msg marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 09/18] vhost-user-gpu: skip VHOST_USER_GPU_UPDATE when !PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 10/18] ui/gl: opengl doesn't require PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 11/18] ui/vnc: VNC requires PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 12/18] ui/spice: SPICE/QXL " marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 13/18] ui/gtk: -display gtk " marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 14/18] ui/dbus: do not require PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 15/18] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN marcandre.lureau
2023-10-10 7:38 ` [PATCH v3 16/18] hw/sm501: allow compiling without PIXMAN marcandre.lureau
2023-10-10 11:58 ` BALATON Zoltan
2023-10-10 12:29 ` BALATON Zoltan
2023-10-10 13:40 ` Marc-André Lureau
2023-10-10 13:43 ` Marc-André Lureau
2023-10-10 7:38 ` [PATCH v3 17/18] hw/display: make ATI_VGA depend on PIXMAN marcandre.lureau
2023-10-10 11:51 ` BALATON Zoltan [this message]
2023-10-10 7:38 ` [PATCH v3 18/18] build-sys: make pixman actually optional marcandre.lureau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=074ec11f-30a0-a70e-fd24-d264925a1df9@eik.bme.hu \
--to=balaton@eik.bme.hu \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=dave@treblig.org \
--cc=eblake@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).