summaryrefslogtreecommitdiffstats
path: root/scripts/Makefile.spl
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2018-04-15 15:21:09 +0200
committerMarek Vasut <marex@denx.de>2018-05-08 21:08:42 +0200
commit792557d1110e13f82ee66dab57c5dca2102744da (patch)
tree8a2b5e060f71695a240da533dc497636c3c2965f /scripts/Makefile.spl
parentcece78fafed838462dd9b2404eac98472fe75b2e (diff)
downloadu-boot-792557d1110e13f82ee66dab57c5dca2102744da.tar.gz
u-boot-792557d1110e13f82ee66dab57c5dca2102744da.tar.xz
u-boot-792557d1110e13f82ee66dab57c5dca2102744da.zip
spl: socfpga: Generate Arria10 SFP header V1
Generate SoCFPGA boot header version 1 instead of version 0 for Arria10. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Dinh Nguyen <dinguyen@kernel.org> Cc: Chin Liang See <chin.liang.see@intel.com>
Diffstat (limited to 'scripts/Makefile.spl')
-rw-r--r--scripts/Makefile.spl4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index 09e7cef96e..057389997d 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -307,7 +307,11 @@ LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
endif
endif
+ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
+MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage_v1
+else
MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage
+endif
$(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE
$(call if_changed,mkimage)