From mboxrd@z Thu Jan 1 00:00:00 1970 From: dirk.behme at googlemail.com Date: Tue, 11 Nov 2008 16:09:18 +0100 Subject: [U-Boot] [PATCH-OMAP3] OMAP3: Update ARM's if then else logic in examples Makefile Message-ID: <4919a022.1f205e0a.2f5b.ffffc570@mx.google.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Update ARM's if then else logic. --- examples/Makefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: u-boot-arm/examples/Makefile =================================================================== --- u-boot-arm.orig/examples/Makefile +++ u-boot-arm/examples/Makefile @@ -30,12 +30,12 @@ LOAD_ADDR = 0x40000 endif ifeq ($(ARCH),arm) -LOAD_ADDR = 0xc100000 ifeq ($(BOARD),omap2420h4) LOAD_ADDR = 0x80300000 -endif -ifeq ($(CPU),omap3) +else ifeq ($(CPU),omap3) LOAD_ADDR = 0x80300000 +else +LOAD_ADDR = 0xc100000 endif endif