summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Evans <horse_dung@hotmail.com>2009-07-13 20:13:45 +0100
committerWolfgang Denk <wd@denx.de>2009-08-08 11:57:22 +0200
commit61c68ae0b43bb5d6ab32958c45289aa197b1a2d1 (patch)
tree9ac3f3e2ad0b8851399fdcf27d2877bbe3aa4e20
parenta3d1421dfd0bb1a729e171f8a093ac837f92cec6 (diff)
downloadblackbird-obmc-uboot-61c68ae0b43bb5d6ab32958c45289aa197b1a2d1.tar.gz
blackbird-obmc-uboot-61c68ae0b43bb5d6ab32958c45289aa197b1a2d1.zip
Fix examples for OMAP3 boards...
The attached patch corrects an error in the examples/Makefile which causes the applications in the examples directory to hang on OMAP3 based boards. The current Makefile sets -Ttext during linking to 0x0c100000 which is outside of addressable SDRAM memory. The script corrects the existing ifeq...else...endif logic to look at the VENDOR tag rather than the CPU tag. The patch affects the following configs: omap3_beagle_config, omap3_overo_config, omap3_evm_config, omap3_pandora_config, omap3_zoom1_config and omap3_zoom2_config. Signed-off-by: Michael Evans <horse_dung@hotmail.com> Edited commit message. Signed-off-by: Wolfgang Denk <wd@denx.de>
-rw-r--r--examples/standalone/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile
index dbcfa920e6..d2e811a8b5 100644
--- a/examples/standalone/Makefile
+++ b/examples/standalone/Makefile
@@ -33,7 +33,7 @@ ifeq ($(ARCH),arm)
ifeq ($(BOARD),omap2420h4)
LOAD_ADDR = 0x80300000
else
-ifeq ($(CPU),omap3)
+ifeq ($(SOC),omap3)
LOAD_ADDR = 0x80300000
else
LOAD_ADDR = 0xc100000
OpenPOWER on IntegriCloud