From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 30 May 2016 15:01:36 +0200 Subject: [U-Boot] [PATCH] ARM64: zynq: Fix boot.bin generation for Zynq and ZynqMP In-Reply-To: References: Message-ID: <574C39B0.2060206@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 05/30/2016 02:59 PM, Michal Simek wrote: > Fix boot.bin generation for Zynq and ZynqMP. > > Signed-off-by: Michal Simek Acked-by: Marek Vasut > --- > > 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) > > -- Best regards, Marek Vasut