Merge pull request #1492 from GNS3/feature/custom-qemu-path

Support for custom Qemu paths
This commit is contained in:
Jeremy Grossmann
2024-04-03 21:24:07 +07:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@ -275,6 +275,9 @@
<mat-card-title></mat-card-title>
<mat-card-subtitle> Additional settings </mat-card-subtitle>
<mat-card-content>
<mat-form-field class="form-field">
<input matInput type="text" [(ngModel)]="qemuTemplate.qemu_path" placeholder="Custom Qemu binary path" />
</mat-form-field>
<mat-form-field class="form-field">
<input matInput type="text" [(ngModel)]="qemuTemplate.options" placeholder="Options" />
</mat-form-field>

View File

@ -234,6 +234,9 @@
<mat-card-title></mat-card-title>
<mat-card-subtitle> Additional settings </mat-card-subtitle>
<mat-card-content>
<mat-form-field class="form-field">
<input matInput type="text" [(ngModel)]="node.properties.qemu_path" placeholder="Qemu binary path" />
</mat-form-field>
<mat-form-field class="form-field">
<input matInput type="text" [(ngModel)]="node.properties.options" placeholder="Options" />
</mat-form-field>