vbox iso: use NVMe Controller when the hard drive interface if pcie
This commit is contained in:
parent
6f54468dd5
commit
b790776096
|
@ -92,6 +92,10 @@ func (s *stepCreateDisk) Run(ctx context.Context, state multistep.StateBag) mult
|
|||
controllerName = "SCSI Controller"
|
||||
}
|
||||
|
||||
if config.HardDriveInterface == "pcie" {
|
||||
controllerName = "NVMe Controller"
|
||||
}
|
||||
|
||||
nonrotational := "off"
|
||||
if config.HardDriveNonrotational {
|
||||
nonrotational = "on"
|
||||
|
|
Loading…
Reference in New Issue