From 470ec185121b52bf0372c277f0b1adade5366898 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 22 Feb 2019 10:29:03 -0500 Subject: [PATCH] Don't use -cpu host on FreeBSD --- images/freebsd/functions | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/images/freebsd/functions b/images/freebsd/functions index 7991e4a..8ba1589 100644 --- a/images/freebsd/functions +++ b/images/freebsd/functions @@ -9,7 +9,9 @@ boot() { exit 1 fi qemu=qemu-system-x86_64 - _boot $(cpu_opts x86_64) + #_boot $(cpu_opts x86_64) + # -cpu host doesn't work on AMD + _boot -cpu qemu64 -enable-kvm } install() { -- 2.38.5