From 8e70b4b8a89b1a537d119a0d44dbf277225d43fc Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 20 Dec 2016 18:42:23 -0800 Subject: [PATCH] switch to 'Nehalem' CPU model Using 'host' is, for some reason, causing the problem where non- minimal installs fail to boot. No idea why, but switching the CPU model to Nehalem solves it. --- templates | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates b/templates index d3105b81..e6c5fc67 100755 --- a/templates +++ b/templates @@ -1354,7 +1354,7 @@ backend => "qemu", name => "64bit", settings => [ - { key => "QEMUCPU", value => "host" }, + { key => "QEMUCPU", value => "Nehalem" }, { key => "QEMUCPUS", value => "2"}, { key => "QEMUVGA", value => "qxl"}, { key => "QEMURAM", value => "2048"}, @@ -1365,7 +1365,7 @@ backend => "qemu", name => "uefi", settings => [ - { key => "QEMUCPU", value => "host" }, + { key => "QEMUCPU", value => "Nehalem" }, { key => "QEMUCPUS", value => "2"}, { key => "QEMUVGA", value => "qxl"}, { key => "QEMURAM", value => "2048"},