From e896ad9a9164a432538789fa2993a1084fd0a387 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Mon, 26 Oct 2015 13:56:39 +0100 Subject: [PATCH] arm: don't build core parking code It's wired up on x86 only. Signed-off-by: Jan Beulich Acked-by: Ian Campbell --- xen/arch/x86/Rules.mk | 1 + xen/common/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/arch/x86/Rules.mk b/xen/arch/x86/Rules.mk index 4a04a8aa6a..42de328468 100644 --- a/xen/arch/x86/Rules.mk +++ b/xen/arch/x86/Rules.mk @@ -13,6 +13,7 @@ HAS_EHCI := y HAS_KEXEC := y HAS_GDBSX := y HAS_PDX := y +HAS_CORE_PARKING := y xenoprof := y CFLAGS += -I$(BASEDIR)/include diff --git a/xen/common/Makefile b/xen/common/Makefile index b290c1685b..a7829db258 100644 --- a/xen/common/Makefile +++ b/xen/common/Makefile @@ -1,5 +1,5 @@ obj-y += bitmap.o -obj-y += core_parking.o +obj-$(HAS_CORE_PARKING) += core_parking.o obj-y += cpu.o obj-y += cpupool.o obj-$(HAS_DEVICE_TREE) += device_tree.o -- 2.30.2