summaryrefslogtreecommitdiffstats
path: root/arch/arm/Makefile
diff options
context:
space:
mode:
authorTeresa Gámez <t.gamez@phytec.de>2013-08-06 11:53:04 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-08-07 08:45:26 +0200
commit76dc04f90496938060cb2b004b13830d39081e39 (patch)
treea94c06e7a74c8f15b4c7f85f46cc46864f6919ef /arch/arm/Makefile
parent72826e747442142a64b865ca6e4a8b3c88acd5d2 (diff)
downloadbarebox-76dc04f90496938060cb2b004b13830d39081e39.tar.gz
barebox-76dc04f90496938060cb2b004b13830d39081e39.tar.xz
ARM: OMAP: Pass TEXT_BASE address to mk-am35xx-spi-image
Pass the TEXT_BASE to the mk-am35xx-spi-image as the default address does not fit for AM33xx. Signed-off-by: Teresa Gámez <t.gamez@phytec.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r--arch/arm/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index d80c12c459..4eced78dd0 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -160,7 +160,7 @@ KBUILD_IMAGE := barebox.ubl
endif
quiet_cmd_am35xx_spi_image = SPI-IMG $@
- cmd_am35xx_spi_image = scripts/mk-am35xx-spi-image $< > $@
+ cmd_am35xx_spi_image = scripts/mk-am35xx-spi-image -a $(TEXT_BASE) $< > $@
barebox.spi: $(KBUILD_BINARY) FORCE
$(call if_changed,am35xx_spi_image)