Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/limayaml/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,7 @@ func ResolveArch(s *string) Arch {

func IsAccelOS() bool {
switch runtime.GOOS {
case "darwin", "linux", "netbsd", "windows":
case "darwin", "linux", "netbsd", "windows", "dragonfly":
// Accelerator
return true
}
Expand Down
2 changes: 2 additions & 0 deletions pkg/qemu/qemu.go
Original file line number Diff line number Diff line change
Expand Up @@ -1120,6 +1120,8 @@ func Accel(arch limayaml.Arch) string {
return "kvm"
case "netbsd":
return "nvmm"
case "dragonfly":
return "nvmm"
case "windows":
return "whpx"
}
Expand Down
Loading