qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Gerd Hoffmann" <kraxel@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>
Subject: [Qemu-devel] [PATCH v6 07/11] util: compile drm.o on Linux
Date: Tue, 23 Apr 2019 15:20:00 +0200	[thread overview]
Message-ID: <20190423132004.13725-8-marcandre.lureau@redhat.com> (raw)
In-Reply-To: <20190423132004.13725-1-marcandre.lureau@redhat.com>

OpenGL isn't required to use DRM rendernodes. The following patches
uses it for 2d resources for ex.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 util/Makefile.objs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/Makefile.objs b/util/Makefile.objs
index 835fcd69e2..119a3f9b25 100644
--- a/util/Makefile.objs
+++ b/util/Makefile.objs
@@ -52,6 +52,6 @@ util-obj-y += systemd.o
 util-obj-y += iova-tree.o
 util-obj-$(CONFIG_INOTIFY1) += filemonitor-inotify.o
 util-obj-$(CONFIG_LINUX) += vfio-helpers.o
-util-obj-$(CONFIG_OPENGL) += drm.o
+util-obj-$(CONFIG_LINUX) += drm.o
 
 stub-obj-y += filemonitor-stub.o
-- 
2.21.0.313.ge35b8cb8e2

  parent reply	other threads:[~2019-04-23 13:21 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-23 13:19 [Qemu-devel] [PATCH v6 00/11] vhost-user for input & GPU Marc-André Lureau
2019-04-23 13:19 ` Marc-André Lureau
2019-04-23 13:19 ` [Qemu-devel] [PATCH v6 01/11] Add vhost-user-backend Marc-André Lureau
2019-04-23 13:19   ` Marc-André Lureau
2019-04-23 13:19 ` [Qemu-devel] [PATCH v6 02/11] Add vhost-user-input-pci Marc-André Lureau
2019-04-23 13:19   ` Marc-André Lureau
2019-04-26  7:11   ` Gerd Hoffmann
2019-04-26  7:11     ` Gerd Hoffmann
2019-04-26  9:28     ` Marc-André Lureau
2019-04-26  9:28       ` Marc-André Lureau
2019-04-23 13:19 ` [Qemu-devel] [PATCH v6 03/11] libvhost-user: add PROTOCOL_F_CONFIG if {set, get}_config Marc-André Lureau
2019-04-23 13:19   ` Marc-André Lureau
2019-04-23 13:19 ` [Qemu-devel] [PATCH v6 04/11] contrib: add vhost-user-input Marc-André Lureau
2019-04-23 13:19   ` Marc-André Lureau
2019-04-26  7:15   ` Gerd Hoffmann
2019-04-26  7:15     ` Gerd Hoffmann
2019-04-26 10:02     ` Marc-André Lureau
2019-04-26 10:02       ` Marc-André Lureau
2019-04-23 13:19 ` [Qemu-devel] [PATCH v6 05/11] vhost-user: add vhost_user_gpu_set_socket() Marc-André Lureau
2019-04-23 13:19   ` Marc-André Lureau
2019-04-26  7:24   ` Gerd Hoffmann
2019-04-26  7:24     ` Gerd Hoffmann
2019-04-26 11:49     ` Marc-André Lureau
2019-04-26 11:49       ` Marc-André Lureau
2019-04-26 12:05       ` Gerd Hoffmann
2019-04-26 12:05         ` Gerd Hoffmann
2019-04-26 12:15         ` Marc-André Lureau
2019-04-26 12:15           ` Marc-André Lureau
2019-04-29  7:12           ` Gerd Hoffmann
2019-04-29  7:12             ` Gerd Hoffmann
2019-04-29 10:50             ` Marc-André Lureau
2019-04-29 10:50               ` Marc-André Lureau
2019-04-29 14:32               ` Gerd Hoffmann
2019-04-29 14:32                 ` Gerd Hoffmann
2019-04-29 15:01             ` Michael S. Tsirkin
2019-04-29 15:01               ` Michael S. Tsirkin
2019-04-23 13:19 ` [Qemu-devel] [PATCH v6 06/11] virtio: add virtio-gpu bswap helpers header Marc-André Lureau
2019-04-23 13:19   ` Marc-André Lureau
2019-04-23 13:20 ` Marc-André Lureau [this message]
2019-04-23 13:20   ` [Qemu-devel] [PATCH v6 07/11] util: compile drm.o on Linux Marc-André Lureau
2019-04-23 13:20 ` [Qemu-devel] [PATCH v6 08/11] contrib: add vhost-user-gpu Marc-André Lureau
2019-04-23 13:20   ` Marc-André Lureau
2019-04-26  7:46   ` Gerd Hoffmann
2019-04-26  7:46     ` Gerd Hoffmann
2019-04-26 13:46     ` Marc-André Lureau
2019-04-26 13:46       ` Marc-André Lureau
2019-04-23 13:20 ` [Qemu-devel] [PATCH v6 09/11] virtio-gpu: split virtio-gpu, introduce virtio-gpu-base Marc-André Lureau
2019-04-23 13:20   ` Marc-André Lureau
2019-04-23 13:20 ` [Qemu-devel] [PATCH v6 10/11] virtio-gpu: split virtio-gpu-pci & virtio-vga Marc-André Lureau
2019-04-23 13:20   ` Marc-André Lureau
2019-04-23 13:20 ` [Qemu-devel] [PATCH v6 11/11] hw/display: add vhost-user-vga & gpu-pci Marc-André Lureau
2019-04-23 13:20   ` Marc-André Lureau
2019-04-23 15:32 ` [Qemu-devel] [PATCH v6 00/11] vhost-user for input & GPU no-reply
2019-04-23 15:32   ` no-reply
2019-04-23 16:09 ` no-reply
2019-04-23 16:09   ` no-reply
2019-04-24 13:20 ` Michael S. Tsirkin
2019-04-24 13:20   ` Michael S. Tsirkin
2019-04-24 13:50   ` Marc-André Lureau
2019-04-24 13:50     ` Marc-André 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=20190423132004.13725-8-marcandre.lureau@redhat.com \
    --to=marcandre.lureau@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).