From: Andrea Bolognani Date: Fri, 10 Jun 2022 08:05:01 +0000 (+0200) Subject: vmx: Declare support for firmware autoselection X-Git-Tag: v8.5.0-rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69464f42804fb920b8cf22c6b1895fca6febd9aa;p=thirdparty%2Flibvirt.git vmx: Declare support for firmware autoselection The feature was implemented in commits b4e34d1083bc and 9bb6e4e739fa but the corresponding feature flag was not set in the driver, so other parts of of libvirt wouldn't be able to know about it. Signed-off-by: Andrea Bolognani Reviewed-by: Ján Tomko --- diff --git a/src/vmx/vmx.c b/src/vmx/vmx.c index 6581173187..e24e9211aa 100644 --- a/src/vmx/vmx.c +++ b/src/vmx/vmx.c @@ -638,6 +638,7 @@ static virDomainDefParserConfig virVMXDomainDefParserConfig = { .domainPostParseCallback = virVMXDomainDefPostParse, .features = (VIR_DOMAIN_DEF_FEATURE_WIDE_SCSI | VIR_DOMAIN_DEF_FEATURE_NAME_SLASH | + VIR_DOMAIN_DEF_FEATURE_FW_AUTOSELECT | VIR_DOMAIN_DEF_FEATURE_NO_BOOT_ORDER), .defArch = VIR_ARCH_I686, };