From: Naresh Bhat Date: Tue, 24 Nov 2015 11:18:02 +0000 (+0100) Subject: acpi/NUMA: build NUMA for x86 only X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2226 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=975efe17970a9a7a4c279be55677097a7b351544;p=xen.git acpi/NUMA: build NUMA for x86 only NUMA is currently not supported for ARM in Xen. Add a new compilation option HAS_NUMA for NUMA. Configure and build NUMA only for x86 architecture now. Signed-off-by: Naresh Bhat Signed-off-by: Parth Dixit Signed-off-by: Shannon Zhao --- diff --git a/xen/arch/x86/Rules.mk b/xen/arch/x86/Rules.mk index 42de328468..5b8eaedb91 100644 --- a/xen/arch/x86/Rules.mk +++ b/xen/arch/x86/Rules.mk @@ -3,6 +3,7 @@ HAS_IOPORTS := y HAS_ACPI := y +HAS_NUMA := y HAS_VGA := y HAS_VIDEO := y HAS_CPUFREQ := y diff --git a/xen/drivers/acpi/Makefile b/xen/drivers/acpi/Makefile index bbb06a7468..3bb626e578 100644 --- a/xen/drivers/acpi/Makefile +++ b/xen/drivers/acpi/Makefile @@ -3,7 +3,7 @@ subdir-y += utilities subdir-$(x86) += apei obj-bin-y += tables.init.o -obj-y += numa.o +obj-$(HAS_NUMA) += numa.o obj-y += osl.o obj-y += pmstat.o