mirror of https://gitee.com/openkylin/libvirt.git
conf: Enable secure-boot when enrolled-keys is enabled
The latter doesn't make sense without the former, so make that visible in the XML. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
9c7499ce54
commit
6cacfc751e
|
@ -4876,6 +4876,16 @@ virDomainDefPostParseMemory(virDomainDef *def,
|
|||
static void
|
||||
virDomainDefPostParseOs(virDomainDef *def)
|
||||
{
|
||||
if (def->os.firmwareFeatures &&
|
||||
def->os.firmwareFeatures[VIR_DOMAIN_OS_DEF_FIRMWARE_FEATURE_ENROLLED_KEYS] == VIR_TRISTATE_BOOL_YES) {
|
||||
|
||||
/* For all non-broken firmware builds, enrolled-keys implies
|
||||
* secure-boot, and having the Secure Boot keys in the NVRAM file
|
||||
* when the firmware doesn't support the Secure Boot feature doesn't
|
||||
* make sense anyway. Reflect this fact explicitly in the XML */
|
||||
def->os.firmwareFeatures[VIR_DOMAIN_OS_DEF_FIRMWARE_FEATURE_SECURE_BOOT] = VIR_TRISTATE_BOOL_YES;
|
||||
}
|
||||
|
||||
if (!def->os.loader)
|
||||
return;
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
<type arch='x86_64' machine='pc-q35-4.0'>hvm</type>
|
||||
<firmware>
|
||||
<feature enabled='yes' name='enrolled-keys'/>
|
||||
<feature enabled='yes' name='secure-boot'/>
|
||||
</firmware>
|
||||
<boot dev='hd'/>
|
||||
</os>
|
||||
|
|
Loading…
Reference in New Issue