Commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1

Authored by Michael Evans
Committed by Wolfgang Denk
1 parent a3d1421dfd

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

examples/standalone/Makefile
... ... @@ -33,7 +33,7 @@
33 33 ifeq ($(BOARD),omap2420h4)
34 34 LOAD_ADDR = 0x80300000
35 35 else
36   -ifeq ($(CPU),omap3)
  36 +ifeq ($(SOC),omap3)
37 37 LOAD_ADDR = 0x80300000
38 38 else
39 39 LOAD_ADDR = 0xc100000