From 2eb71a4a789caecd19b65e9fa7740a5a516e556c Mon Sep 17 00:00:00 2001 From: Xueqiang Wei Date: Tue, 2 Jul 2024 12:14:48 +0800 Subject: [PATCH] seabios_order_once: disable sga device from rhel8.6 1. since sga device has been removed in rhel9, disable it 2. using "-machine graphics=off" instead of "-device sga" 3. rhel8 will continue to support sgabios, but starting with 8.6 libvirt uses "-machine graphics=off" so rhel-8 testing should be switched over too. Signed-off-by: Xueqiang Wei --- qemu/tests/cfg/seabios_order_once.cfg | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qemu/tests/cfg/seabios_order_once.cfg b/qemu/tests/cfg/seabios_order_once.cfg index 9cd29cc16c..d17217fead 100644 --- a/qemu/tests/cfg/seabios_order_once.cfg +++ b/qemu/tests/cfg/seabios_order_once.cfg @@ -4,10 +4,11 @@ only default_bios boot_menu = on start_vm =no - enable_sga = yes - Host_RHEL.m9: - enable_sga = no - machine_type_extra_params = "graphics=off" + enable_sga = no + machine_type_extra_params = "graphics=off" + Host_RHEL.m6, Host_RHEL.m7, Host_RHEL.m8.u0, Host_RHEL.m8.u1, Host_RHEL.m8.u2, Host_RHEL.m8.u3, Host_RHEL.m8.u4, Host_RHEL.m8.u5: + enable_sga = yes + machine_type_extra_params = "" image_boot = no images = "stg" image_name_stg = "images/stg"