Discussion:
[Xen-changelog] [xen master] xen/arm: make platform specific code dependent on ALL32_PLAT or ALL64_PLAT
p***@xen.org
2018-11-04 05:06:06 UTC
Permalink
commit 4829b80eeea0b731ec20a1b4f6d39c9371e1d8a8
Author: Stefano Stabellini <***@kernel.org>
AuthorDate: Mon Sep 24 15:55:03 2018 -0700
Commit: Stefano Stabellini <***@kernel.org>
CommitDate: Tue Oct 30 10:58:29 2018 -0700

xen/arm: make platform specific code dependent on ALL32_PLAT or ALL64_PLAT

Compile platform code that doesn't have its own specific kconfig option
only if ALL32_PLAT or ALL64_PLAT depending on the architecture. The
benefit is that choosing one of the platforms available as a menu
option allows the user not to build other unnecessary platform code.

Signed-off-by: Stefano Stabellini <***@xilinx.com>
Reviewed-by: Andrii Anisov <***@epam.com>
---
xen/arch/arm/platforms/Makefile | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/xen/arch/arm/platforms/Makefile b/xen/arch/arm/platforms/Makefile
index a79bdb9c08..bd724a1dad 100644
--- a/xen/arch/arm/platforms/Makefile
+++ b/xen/arch/arm/platforms/Makefile
@@ -1,11 +1,11 @@
-obj-y += vexpress.o
-obj-$(CONFIG_ARM_32) += brcm.o
-obj-$(CONFIG_ARM_32) += exynos5.o
-obj-$(CONFIG_ARM_32) += midway.o
-obj-$(CONFIG_ARM_32) += omap5.o
-obj-$(CONFIG_ARM_32) += rcar2.o
-obj-$(CONFIG_ARM_64) += seattle.o
-obj-y += sunxi.o
-obj-$(CONFIG_ARM_64) += thunderx.o
-obj-$(CONFIG_ARM_64) += xgene-storm.o
+obj-$(CONFIG_ALL32_PLAT) += vexpress.o
+obj-$(CONFIG_ALL32_PLAT) += brcm.o
+obj-$(CONFIG_ALL32_PLAT) += exynos5.o
+obj-$(CONFIG_ALL32_PLAT) += midway.o
+obj-$(CONFIG_ALL32_PLAT) += omap5.o
+obj-$(CONFIG_ALL32_PLAT) += rcar2.o
+obj-$(CONFIG_ALL64_PLAT) += seattle.o
+obj-$(CONFIG_ALL_PLAT) += sunxi.o
+obj-$(CONFIG_ALL64_PLAT) += thunderx.o
+obj-$(CONFIG_ALL64_PLAT) += xgene-storm.o
obj-$(CONFIG_MPSOC_PLATFORM) += xilinx-zynqmp.o
--
generated by git-patchbot for /home/xen/git/xen.git#master

Loading...