diff options
author | Michal Simek <michal.simek@xilinx.com> | 2016-05-30 14:57:02 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2016-06-06 11:23:27 +0200 |
commit | 1a6a6e9a168fefc7b73bbe2619d4a0725cfa344a (patch) | |
tree | 9a85cb909902df13cad79f809a96f693276b82ee /scripts | |
parent | 9c152edd12ba57bb3e3a570652e6493a8264e5af (diff) |
ARM64: zynq: Fix boot.bin generation for Zynq and ZynqMP
Fix boot.bin generation for Zynq and ZynqMP.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.spl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 6d2017da7e9..0997fd9fddf 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) |