Skip to content

Commit

Permalink
vga: build qxl as module
Browse files Browse the repository at this point in the history
First step in making spice support modular.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20200624131045.14512-8-kraxel@redhat.com
  • Loading branch information
kraxel committed Jul 7, 2020
1 parent aa9c857 commit d39e93d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions hw/Makefile.objs
Expand Up @@ -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)
5 changes: 4 additions & 1 deletion hw/display/Makefile.objs
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions util/module.c
Expand Up @@ -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;
Expand Down

0 comments on commit d39e93d

Please sign in to comment.