diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-03-01 11:05:41 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-03-05 08:44:11 +0100 |
commit | 61b4d9a24668d3b14f80d25ab66f6081f1ab7b17 (patch) | |
tree | 37392f315f35f505a5c637d201720a9612e43beb /Makefile.objs | |
parent | 898f9d41d02d577ac863069772f0708268d2f926 (diff) | |
download | qemu-61b4d9a24668d3b14f80d25ab66f6081f1ab7b17.zip |
console: add ui module loading support
If a requested user interface is not available, try loading it as
module, simliar to block layer modules. Needed to keep things working
when followup patches start to build user interfaces as modules.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20180301100547.18962-8-kraxel@redhat.com
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.objs b/Makefile.objs index 5dc134818c..57ca6d908b 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -56,6 +56,7 @@ common-obj-y += hw/ common-obj-y += replay/ common-obj-y += ui/ +common-obj-m += ui/ common-obj-y += bt-host.o bt-vhci.o bt-host.o-cflags := $(BLUEZ_CFLAGS) |