From 0bb7a0fee73d97447165f172eb9eecdc780ac621 Mon Sep 17 00:00:00 2001 From: Xiaoling Gao Date: Thu, 12 Sep 2024 08:51:25 +0800 Subject: [PATCH] qemu_guest_agent: fix installer installation failed issue Installation of installer would quit because virtio-net was uninstalled and re-installed in the process which cause the session was lost, and then autoit process would quit. Then using other network type instead of virtio-net would work. Signed-off-by: Xiaoling Gao --- qemu/tests/cfg/qemu_guest_agent.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/qemu/tests/cfg/qemu_guest_agent.cfg b/qemu/tests/cfg/qemu_guest_agent.cfg index d7553a109e..e56f0789c7 100644 --- a/qemu/tests/cfg/qemu_guest_agent.cfg +++ b/qemu/tests/cfg/qemu_guest_agent.cfg @@ -602,6 +602,7 @@ remove_image_image1 = yes cd_format_fixed = ahci drive_format_image1 = ahci + nic_model_nic1 = rtl8139 install_script_path = "WIN_UTILS:\install.au3" repair_script_path = "WIN_UTILS:\repair.au3" uninstall_script_path = "WIN_UTILS:\uninstall.au3"