[U-Boot] [PATCH] ARM64: zynq: Fix boot.bin generation for Zynq and ZynqMP
Michal Simek
michal.simek at xilinx.com
Mon May 30 14:59:05 CEST 2016
Fix boot.bin generation for Zynq and ZynqMP.
Signed-off-by: Michal Simek <michal.simek at xilinx.com>
---
scripts/Makefile.spl | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index 6d2017da7e97..0997fd9fddfc 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -158,11 +158,8 @@ ifeq ($(CONFIG_SYS_SOC),"at91")
ALL-y += boot.bin
endif
-ifdef CONFIG_ARCH_ZYNQ
-ALL-y += $(obj)/boot.bin
-endif
-
-ALL-(CONFIG_ARCH_ZYNQMP) += $(obj)/boot.bin
+ALL-$(CONFIG_ARCH_ZYNQ) += $(obj)/boot.bin
+ALL-$(CONFIG_ARCH_ZYNQMP) += $(obj)/boot.bin
all: $(ALL-y)
--
1.9.1
More information about the U-Boot
mailing list