use cortex-a57 as cpu for arm emulation for now...

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2018-11-12 14:10:39 +01:00 committed by Thomas Lamprecht
parent 4fc262bd50
commit 0f27a91d3d

View File

@ -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";