Re: [U-Boot] [PATCH 06/13 v5] ARM: OMAP3: Add memory and syslib common files

2008-11-10 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <[EMAIL PROTECTED]> you wrote: > > --- u-boot-main.orig/examples/Makefile > > +++ u-boot-main/examples/Makefile > > @@ -30,10 +30,12 @@ LOAD_ADDR = 0x4 > > endif > > > > ifeq ($(ARCH),arm) > > +LOAD_ADDR = 0xc10 > > ifeq ($(BOARD),omap

Re: [U-Boot] [PATCH 06/13 v5] ARM: OMAP3: Add memory and syslib common files

2008-11-09 Thread Jean-Christophe PLAGNIOL-VILLARD
> --- u-boot-main.orig/examples/Makefile > +++ u-boot-main/examples/Makefile > @@ -30,10 +30,12 @@ LOAD_ADDR = 0x4 > endif > > ifeq ($(ARCH),arm) > +LOAD_ADDR = 0xc10 > ifeq ($(BOARD),omap2420h4) > LOAD_ADDR = 0x8030 > -else > -LOAD_ADDR = 0xc10 > +endif > +ifeq ($(CPU),omap3)

[U-Boot] [PATCH 06/13 v5] ARM: OMAP3: Add memory and syslib common files

2008-11-02 Thread dirk . behme
Subject: [PATCH 06/13 v5] ARM: OMAP3: Add memory and syslib common files From: Dirk Behme <[EMAIL PROTECTED]> Add memory and syslib common files. Signed-off-by: Dirk Behme <[EMAIL PROTECTED]> --- Changes in version v3: - Add detection and support for 128MB/256MB RAM by Mans Rullgard Changes