add docs about efi mode (#8400)

Document what needs to happen if you're launching an efi vm.

Closes #7081
This commit is contained in:
Megan Marsh 2019-11-22 02:17:08 -08:00 committed by Adrien Delorme
parent 59e6e1d4d5
commit e92783f303
1 changed files with 12 additions and 0 deletions

View File

@ -244,3 +244,15 @@ Each command itself is an array of strings, where each string is an argument to
template](/docs/templates/engine.html). The only available
variable is `Name` which is replaced with the unique name of the VM, which is
required for many VBoxManage calls.
## Creating an EFI enabled VM
If you want to create an EFI enabled VM, make sure you set the `iso_interface`
to "sata". Otherwise your attached drive will not be bootable. Example:
``` json
"iso_interface": "sata",
"vboxmanage": [
[ "modifyvm", "{{.Name}}", "--firmware", "EFI" ]
]
```