From: Wolfgang Bumiller Date: Mon, 12 Nov 2018 13:10:39 +0000 (+0100) Subject: use cortex-a57 as cpu for arm emulation for now... X-Git-Url: https://git.proxmox.com/?p=qemu-server.git;a=commitdiff_plain;h=0f27a91d3dd34c76d7b95096634c5107883afb93 use cortex-a57 as cpu for arm emulation for now... Signed-off-by: Wolfgang Bumiller --- diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 53254a0..23a232e 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -3312,6 +3312,9 @@ sub get_cpu_options { my $ostype = $conf->{ostype}; my $cpu = $kvm ? "kvm64" : "qemu64"; + if ($arch eq 'aarch64') { + $cpu = 'cortex-a57'; + } if (my $cputype = $conf->{cpu}) { my $cpuconf = PVE::JSONSchema::parse_property_string($cpu_fmt, $cputype) or die "Cannot parse cpu description: $cputype\n";