From 296462c9f319159d20998b05a4d190d5e9d21568 Mon Sep 17 00:00:00 2001 From: Norbert Manthey Date: Wed, 25 Nov 2020 14:00:10 +0100 Subject: [PATCH] cpus: use 2 per default Currently, there are no use cases for 4 CPUs, hence, use less resources. Signed-off-by: Norbert Manthey --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 635fb894..cac136e9 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ QEMU_PARAMS += -m 8192 QEMU_PARAMS += -display none -vga none -vnc none QEMU_PARAMS += -serial stdio QEMU_PARAMS += -no-reboot -no-shutdown -QEMU_PARAMS += -smp cpus=4 +QEMU_PARAMS += -smp cpus=2 ifeq ($(SYSTEM),LINUX) ifneq ($(USE_KVM), false) # you can hard-disable KVM use with the USE_KVM environment variable HAVE_KVM=$(shell lsmod | awk '/^kvm / {print $$1}')