diff options
author | 2023-10-09 10:32:46 +0400 | |
---|---|---|
committer | 2023-10-18 10:10:49 +0200 | |
commit | a1e88d2d2b89ad6371036aa07f7e96947786c873 (patch) | |
tree | e08103304d53422a9d6d6e7789d1d7fd9850031c /hw/core | |
parent | ramfb: add migration support (diff) | |
download | qemu-a1e88d2d2b89ad6371036aa07f7e96947786c873.tar.xz qemu-a1e88d2d2b89ad6371036aa07f7e96947786c873.zip |
ramfb-standalone: add migration support
Add a "ramfb-dev" section whenever "x-migrate" is turned on. Turn it off
by default on machines <= 8.1 for compatibility reasons.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'hw/core')
-rw-r--r-- | hw/core/machine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index cfd1edfe20..6305f2d7a4 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -34,6 +34,7 @@ GlobalProperty hw_compat_8_1[] = { { TYPE_PCI_BRIDGE, "x-pci-express-writeable-slt-bug", "true" }, + { "ramfb", "x-migrate", "off" }, }; const size_t hw_compat_8_1_len = G_N_ELEMENTS(hw_compat_8_1); |