From c4f8af2665183353526a384ca70f419b7e6d75de Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Mon, 12 Oct 2015 10:53:58 +0200 Subject: [PATCH] hw_zynq: limit cpu count to 1 in mp_server.run qemu says: Number of SMP cpus requested (2), exceeds max cpus supported by machine `xilinx-zynq-a9' (1) --- repos/base/run/mp_server.run | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/base/run/mp_server.run b/repos/base/run/mp_server.run index bb2b3bfca..1183cd795 100644 --- a/repos/base/run/mp_server.run +++ b/repos/base/run/mp_server.run @@ -44,6 +44,7 @@ if {[have_include "power_on/qemu"]} { if {[have_spec pistachio]} { set want_cpus 1 } if {[have_spec fiasco]} { set want_cpus 1 } if {[have_spec hw_x86_64]} { set want_cpus 1 } + if {[have_spec hw_zynq]} { set want_cpus 1 } append qemu_args " -nographic -m 64 -smp $want_cpus,cores=$want_cpus " }