summaryrefslogtreecommitdiffstats
path: root/board/xilinx/zynq/Makefile
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2016-05-20 14:59:33 +0200
committerMichal Simek <michal.simek@xilinx.com>2016-05-24 13:22:50 +0200
commitad5b5801264e573bfbf17a20b04c546985c5bfc1 (patch)
tree84d8bb2e1f5dcf2101ee30af0f90a22ee8fdd88a /board/xilinx/zynq/Makefile
parent1b008fdb06848c7c84e7c1a4a9b2b76239550555 (diff)
downloadblackbird-obmc-uboot-ad5b5801264e573bfbf17a20b04c546985c5bfc1.tar.gz
blackbird-obmc-uboot-ad5b5801264e573bfbf17a20b04c546985c5bfc1.zip
ARM: zynq: Simplify zynq configuration
Extending Kconfig for adding new platform is a lot of work for nothing. Setting SYS_CONFIG_NAME directly in Kconfig and remove all dependencies on TARGET_ZYNQ_* options including SPL. As a side-effect it also remove custom init folder for ps7_init_gpl.* files. Folder is chosen based on device-tree file. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board/xilinx/zynq/Makefile')
-rw-r--r--board/xilinx/zynq/Makefile12
1 files changed, 1 insertions, 11 deletions
diff --git a/board/xilinx/zynq/Makefile b/board/xilinx/zynq/Makefile
index eab93038ce..7de0212bc9 100644
--- a/board/xilinx/zynq/Makefile
+++ b/board/xilinx/zynq/Makefile
@@ -7,17 +7,7 @@
obj-y := board.o
-# Copied from Xilinx SDK 2014.4
-hw-platform-$(CONFIG_TARGET_ZYNQ_ZED) := zed_hw_platform
-hw-platform-$(CONFIG_TARGET_ZYNQ_MICROZED) := MicroZed_hw_platform
-hw-platform-$(CONFIG_TARGET_ZYNQ_ZC702) := ZC702_hw_platform
-hw-platform-$(CONFIG_TARGET_ZYNQ_ZC706) := ZC706_hw_platform
-hw-platform-$(CONFIG_TARGET_ZYNQ_ZYBO) := zybo_hw_platform
-# If you want to use customized ps7_init_gpl.c/h,
-# enable CONFIG_ZYNQ_CUSTOM_INIT and put them into custom_hw_platform/.
-# This line must be placed at the bottom of the list because
-# it takes precedence over the default ones.
-hw-platform-$(CONFIG_ZYNQ_CUSTOM_INIT) := custom_hw_platform
+hw-platform-y :=$(shell echo $(CONFIG_DEFAULT_DEVICE_TREE))
init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\
$(hw-platform-y)/ps7_init_gpl.o)
OpenPOWER on IntegriCloud