Support for UEFI boot mode option for Qemu VMs

This commit is contained in:
grossmj 2023-06-23 11:29:38 +09:30
parent 04c28bd40a
commit 838480509e
2 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,7 @@ export class Properties {
extra_volumes: string[];
replicate_network_connection_state: boolean;
tpm: boolean;
uefi: boolean;
}
export class Node {

View File

@ -241,6 +241,9 @@
<br /><mat-checkbox [(ngModel)]="node.properties.tpm">
Enable the Trusted Platform Module (TPM)
</mat-checkbox>
<br /><mat-checkbox [(ngModel)]="node.properties.uefi">
Enable the UEFI boot mode
</mat-checkbox>
</mat-card-content>
</mat-card>
</mat-tab>