summaryrefslogtreecommitdiffstats
path: root/images
diff options
context:
space:
mode:
authorTrent Piepho <tpiepho@kymetacorp.com>2016-05-20 23:11:13 +0000
committerSascha Hauer <s.hauer@pengutronix.de>2016-05-23 09:48:46 +0200
commit123bb5ff51ee3b64c8eaa2feecb160491b4b404f (patch)
tree65917a12b40942b8b73d36a103bfed3e2a379bb4 /images
parent4763fac31c291490e3f1faa2134ff7f86793c212 (diff)
downloadbarebox-123bb5ff51ee3b64c8eaa2feecb160491b4b404f.tar.gz
barebox-123bb5ff51ee3b64c8eaa2feecb160491b4b404f.tar.xz
socfpga: Stop putting 512 byte header on SocFPGA images
Since images without the extra header now boot correctly, stop adding it. This makes the image 512 bytes smaller. It also gives the image a correct barebox header. The 512 byte extra header looked like a barebox header (had a "barebox\n" signature) but had incorrect size and text start fields. Signed-off-by: Trent Piepho <tpiepho@kymetacorp.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'images')
-rw-r--r--images/Makefile.socfpga2
1 files changed, 1 insertions, 1 deletions
diff --git a/images/Makefile.socfpga b/images/Makefile.socfpga
index 7e642c06c9..21804d93df 100644
--- a/images/Makefile.socfpga
+++ b/images/Makefile.socfpga
@@ -5,7 +5,7 @@
# %.socfpgaimg - convert into socfpga image
# ----------------------------------------------------------------
quiet_cmd_socfpga_image = SOCFPGA-IMG $@
- cmd_socfpga_image = scripts/socfpga_mkimage -b -o $@ $<
+ cmd_socfpga_image = scripts/socfpga_mkimage -o $@ $<
$(obj)/%.socfpgaimg: $(obj)/% FORCE
$(call if_changed,socfpga_image)