diff options
| author | Thomas Huth <thuth@redhat.com> | 2023-02-09 17:15:40 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2023-02-14 09:02:42 +0100 |
| commit | b482fb43deb3fa9f5c44fd3da3dde04acec7750f (patch) | |
| tree | 8ea2428482d947a345c7dfaa18ab9279c09e93d0 /tests/migration/guestperf/engine.py | |
| parent | 77034bbc120281a981f7371ab642762a33cceaea (diff) | |
| download | focaccia-qemu-b482fb43deb3fa9f5c44fd3da3dde04acec7750f.tar.gz focaccia-qemu-b482fb43deb3fa9f5c44fd3da3dde04acec7750f.zip | |
hw/misc/sga: Remove the deprecated "sga" device
It's been deprecated since QEMU v6.2, so it should be OK to finally remove this now. Message-Id: <20230209161540.1054669-1-thuth@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/migration/guestperf/engine.py')
| -rw-r--r-- | tests/migration/guestperf/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migration/guestperf/engine.py b/tests/migration/guestperf/engine.py index cc06fac592..e69d16a62c 100644 --- a/tests/migration/guestperf/engine.py +++ b/tests/migration/guestperf/engine.py @@ -337,7 +337,7 @@ class Engine(object): argv.extend(self._get_qemu_serial_args()) if self._debug: - argv.extend(["-device", "sga"]) + argv.extend(["-machine", "graphics=off"]) if hardware._prealloc_pages: argv_source += ["-mem-path", "/dev/shm", |