vga: build qxl as module
authorGerd Hoffmann <kraxel@redhat.com>
Wed, 24 Jun 2020 13:10:42 +0000 (15:10 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Tue, 7 Jul 2020 13:33:59 +0000 (15:33 +0200)
First step in making spice support modular.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20200624131045.14512-8-kraxel@redhat.com

hw/Makefile.objs
hw/display/Makefile.objs
util/module.c

index af8fd9a510ed29a022ab26a4e9ccf103eb03078c..14b7ea4eb62e0ffa5e7747f11da2766373937e7b 100644 (file)
@@ -43,5 +43,6 @@ devices-dirs-y += smbios/
 endif
 
 common-obj-y += $(devices-dirs-y)
+common-obj-m += display/
 common-obj-m += usb/
 obj-y += $(devices-dirs-y)
index 77a7d622bd2da8e911213e487bf9f155c9b955f3..76b3571e49024c7abaad7da6b759331dfe6223d9 100644 (file)
@@ -44,7 +44,10 @@ common-obj-$(CONFIG_ARTIST) += artist.o
 
 obj-$(CONFIG_VGA) += vga.o
 
-common-obj-$(CONFIG_QXL) += qxl.o qxl-logger.o qxl-render.o
+ifeq ($(CONFIG_QXL),y)
+common-obj-m += qxl.mo
+qxl.mo-objs = qxl.o qxl-logger.o qxl-render.o
+endif
 
 obj-$(CONFIG_VIRTIO_GPU) += virtio-gpu-base.o virtio-gpu.o virtio-gpu-3d.o
 obj-$(CONFIG_VHOST_USER_GPU) += vhost-user-gpu.o
index e3226165e91c66596389bcbbb877bdf4e605b6b7..7c76d2a84b944fdc93aaadf607701b431388c873 100644 (file)
@@ -264,6 +264,8 @@ static struct {
     { "ccid-card-passthru",    "hw-", "usb-smartcard"         },
     { "ccid-card-emulated",    "hw-", "usb-smartcard"         },
     { "usb-redir",             "hw-", "usb-redirect"          },
+    { "qxl-vga",               "hw-", "display-qxl"           },
+    { "qxl",                   "hw-", "display-qxl"           },
 };
 
 static bool module_loaded_qom_all;