diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-10-15 10:52:09 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2018-10-15 10:52:09 -0600 |
commit | 7f623d0834238ce6566afcbeeb325f3d943c2741 (patch) | |
tree | ad65cdc9ab240537337c72e9e989f0250c1f6d45 /stubs | |
parent | ff56877e911782dedc9a424233fd3f62369c258c (diff) | |
download | qemu-7f623d0834238ce6566afcbeeb325f3d943c2741.zip qemu-7f623d0834238ce6566afcbeeb325f3d943c2741.tar.gz qemu-7f623d0834238ce6566afcbeeb325f3d943c2741.tar.bz2 |
stubs: add ramfb
Needed to make sure code using ramfb (vfio) compiles properly even on
platforms without fw_cfg (and therefore no ramfb) support.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/Makefile.objs | 1 | ||||
-rw-r--r-- | stubs/ramfb.c | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index 53d3f32..5dd0aee 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -43,3 +43,4 @@ stub-obj-y += xen-common.o stub-obj-y += xen-hvm.o stub-obj-y += pci-host-piix.o stub-obj-y += ram-block.o +stub-obj-y += ramfb.o diff --git a/stubs/ramfb.c b/stubs/ramfb.c new file mode 100644 index 0000000..48143f3 --- /dev/null +++ b/stubs/ramfb.c @@ -0,0 +1,13 @@ +#include "qemu/osdep.h" +#include "qapi/error.h" +#include "hw/display/ramfb.h" + +void ramfb_display_update(QemuConsole *con, RAMFBState *s) +{ +} + +RAMFBState *ramfb_setup(Error **errp) +{ + error_setg(errp, "ramfb support not available"); + return NULL; +} |