Skip to content

Commit

Permalink
Merge pull request hashicorp#7151 from nelsonjchen/qemu-whpx-option
Browse files Browse the repository at this point in the history
Add support for whpx accelerator to qemu builder
  • Loading branch information
SwampDragons authored Jan 4, 2019
2 parents c789a68 + b39f398 commit 1614984
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion builder/qemu/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var accels = map[string]struct{}{
"xen": {},
"hax": {},
"hvf": {},
"whpx": {},
}

var netDevice = map[string]bool{
Expand Down Expand Up @@ -274,7 +275,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {

if _, ok := accels[b.config.Accelerator]; !ok {
errs = packer.MultiErrorAppend(
errs, errors.New("invalid accelerator, only 'kvm', 'tcg', 'xen', 'hax', 'hvf', or 'none' are allowed"))
errs, errors.New("invalid accelerator, only 'kvm', 'tcg', 'xen', 'hax', 'hvf', 'whpx', or 'none' are allowed"))
}

if _, ok := netDevice[b.config.NetDevice]; !ok {
Expand Down
10 changes: 7 additions & 3 deletions website/source/docs/builders/qemu.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Linux server and have not enabled X11 forwarding (`ssh -X`).
### Optional:

- `accelerator` (string) - The accelerator type to use when running the VM.
This may be `none`, `kvm`, `tcg`, `hax`, `hvf`, or `xen`. The appropriate
This may be `none`, `kvm`, `tcg`, `hax`, `hvf`, `whpx`, or `xen`. The appropriate
software must have already been installed on your build machine to use the
accelerator you specified. When no accelerator is specified, Packer will try
to use `kvm` if it is available but will default to `tcg` otherwise.
Expand All @@ -116,12 +116,16 @@ Linux server and have not enabled X11 forwarding (`ssh -X`).
upstream issue which can be tracked
[here](https://github.com/intel/haxm/issues/20).

-> The `hvf` accelerator is new and experimental as of
-> The `hvf` and `whpx` accelerator are new and experimental as of
[QEMU 2.12.0](https://wiki.qemu.org/ChangeLog/2.12#Host_support).
You may encounter issues unrelated to Packer when using it. You may need to
You may encounter issues unrelated to Packer when using these. You may need to
add [ "-global", "virtio-pci.disable-modern=on" ] to `qemuargs` depending on the
guest operating system.

-> For `whpx`, note that [Stefan Weil's QEMU for Windows distribution](https://qemu.weilnetz.de/w64/)
does not include WHPX support and users may need to compile or source a
build of QEMU for Windows themselves with WHPX support.

- `boot_command` (array of strings) - This is an array of commands to type
when the virtual machine is first booted. The goal of these commands should
be to type just enough to initialize the operating system installer. Special
Expand Down

0 comments on commit 1614984

Please sign in to comment.