From: Michal Simek Date: Mon, 30 May 2016 12:57:02 +0000 (+0200) Subject: ARM64: zynq: Fix boot.bin generation for Zynq and ZynqMP X-Git-Tag: v2016.07-rc1~21^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a6a6e9a168fefc7b73bbe2619d4a0725cfa344a;p=platform%2Fkernel%2Fu-boot.git ARM64: zynq: Fix boot.bin generation for Zynq and ZynqMP Fix boot.bin generation for Zynq and ZynqMP. Signed-off-by: Michal Simek Acked-by: Marek Vasut --- diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 6d2017d..0997fd9 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)