diff options
author | Tom Rini <trini@konsulko.com> | 2019-04-09 12:10:40 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-09 12:10:40 -0400 |
commit | 5a451f11c800cde986386aa7cab464b40260ae3c (patch) | |
tree | 0c38454238a3ee787ba72f304fc25b7921845222 /scripts/Makefile.spl | |
parent | 1d63ec3fa40e4899ad1d74d5ed3c926acfda54f2 (diff) | |
parent | 7bf9bca7c0a9fe5c63e8fd5c2aa63884d76dace0 (diff) |
Merge tag 'u-boot-atmel-2019.07-a' of git://git.denx.de/u-boot-atmel
First set of u-boot-atmel features and fixes for 2019.07 cycle
Diffstat (limited to 'scripts/Makefile.spl')
-rw-r--r-- | scripts/Makefile.spl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 54b160d72b..56dbbe127b 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -179,10 +179,10 @@ MKIMAGEFLAGS_boot.bin = -T atmelimage ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y) MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params) -boot.bin: $(obj)/../tools/atmel_pmecc_params +$(obj)/boot.bin: $(obj)/../tools/atmel_pmecc_params endif -boot.bin: $(obj)/u-boot-spl.bin FORCE +$(obj)/boot.bin: $(obj)/u-boot-spl.bin FORCE $(call if_changed,mkimage) else ifdef CONFIG_ARCH_ZYNQ @@ -225,7 +225,7 @@ endif endif ifeq ($(CONFIG_SYS_SOC),"at91") -ALL-y += boot.bin +ALL-y += $(obj)/boot.bin endif ALL-$(CONFIG_SPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-16bit-spl.bin |