All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] PATCH: Fix examples for OMAP3 boards...
@ 2009-06-18  9:34 Michael Evans
  2009-06-25 22:54 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Evans @ 2009-06-18  9:34 UTC (permalink / raw)
  To: u-boot


Description:
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>

Patch:
--- examples/Makefile.orig    2009-06-18 10:14:44.000000000 +0100
+++ examples/Makefile    2009-06-18 10:14:52.000000000 +0100
@@ -33,7 +33,7 @@ ifeq ($(ARCH),arm) 
 ifeq ($(BOARD),omap2420h4)
 LOAD_ADDR = 0x80300000
 else
-ifeq ($(CPU),omap3)
+ifeq ($(VENDOR),omap3)
 LOAD_ADDR = 0x80300000
 else
 LOAD_ADDR = 0xc100000


_________________________________________________________________
Get the best of MSN on your mobile
http://clk.atdmt.com/UKM/go/147991039/direct/01/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [U-Boot] PATCH: Fix examples for OMAP3 boards...
  2009-06-18  9:34 [U-Boot] PATCH: Fix examples for OMAP3 boards Michael Evans
@ 2009-06-25 22:54 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 2+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-06-25 22:54 UTC (permalink / raw)
  To: u-boot

On 10:34 Thu 18 Jun     , Michael Evans wrote:
> 
> Description:
> 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>
> 
> Patch:
> --- examples/Makefile.orig    2009-06-18 10:14:44.000000000 +0100
> +++ examples/Makefile    2009-06-18 10:14:52.000000000 +0100
> @@ -33,7 +33,7 @@ ifeq ($(ARCH),arm) 
>  ifeq ($(BOARD),omap2420h4)
>  LOAD_ADDR = 0x80300000
>  else
> -ifeq ($(CPU),omap3)
> +ifeq ($(VENDOR),omap3)
omap3 is not a vendor but a SOC

Best Regards,
J.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-06-25 22:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-18  9:34 [U-Boot] PATCH: Fix examples for OMAP3 boards Michael Evans
2009-06-25 22:54 ` Jean-Christophe PLAGNIOL-VILLARD

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.