diff options
author | Dirk Behme <dirk.behme@googlemail.com> | 2008-12-14 09:47:15 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-01-24 17:51:21 +0100 |
commit | 91eee546737ae21d930af479530997174c342b13 (patch) | |
tree | a7f0d7b903b08fc4fbf557eefcb1e327077362fa /examples/Makefile | |
parent | 5ed3e8659e5373f6a229877ac506c0b00a054fb8 (diff) | |
download | talos-obmc-uboot-91eee546737ae21d930af479530997174c342b13.tar.gz talos-obmc-uboot-91eee546737ae21d930af479530997174c342b13.zip |
OMAP3: Add common board, interrupt and system info
Add common board, interrupt and system info code.
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile index b0a8853661..927010d073 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -33,9 +33,13 @@ ifeq ($(ARCH),arm) ifeq ($(BOARD),omap2420h4) LOAD_ADDR = 0x80300000 else +ifeq ($(CPU),omap3) +LOAD_ADDR = 0x80300000 +else LOAD_ADDR = 0xc100000 endif endif +endif ifeq ($(ARCH),mips) LOAD_ADDR = 0x80200000 -T mips.lds |