Support for UEFI boot mode option for Qemu VMs

This commit is contained in:
grossmj 2023-06-21 18:10:00 +09:30
parent 17a9e3d089
commit ac02dede76
2 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,7 @@ export class Properties {
replicate_network_connection_state: boolean; replicate_network_connection_state: boolean;
memory: number; memory: number;
tpm: boolean; tpm: boolean;
uefi: boolean;
} }
export class Node { export class Node {

View File

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