diff options
author | Mike Frysinger | 2009-09-03 23:12:47 -0400 |
---|---|---|
committer | Wolfgang Denk | 2009-09-04 23:06:34 +0200 |
commit | 262ae0a6193f10b6a94e86d2f752e7f5510416fa (patch) | |
tree | 0ba26d6a18242cc5b817ed5506b43372d0ebdf22 /lib_arm/config.mk | |
parent | 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d (diff) |
push LOAD_ADDR out to arch mk files
Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in
the standalone Makefile, push the setting up of LOAD_ADDR out to the arch
config.mk (and rename to STANDALONE_LOAD_ADDR in the process). This keeps
the common code clean and lets the arch do whatever crazy crap it wants in
its own area.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib_arm/config.mk')
-rw-r--r-- | lib_arm/config.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib_arm/config.mk b/lib_arm/config.mk index 705dfc306c4..3c078df3c12 100644 --- a/lib_arm/config.mk +++ b/lib_arm/config.mk @@ -23,6 +23,16 @@ CROSS_COMPILE ?= arm-linux- +ifeq ($(BOARD),omap2420h4) +STANDALONE_LOAD_ADDR = 0x80300000 +else +ifeq ($(SOC),omap3) +STANDALONE_LOAD_ADDR = 0x80300000 +else +STANDALONE_LOAD_ADDR = 0xc100000 +endif +endif + PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__ # Explicitly specifiy 32-bit ARM ISA since toolchain default can be -mthumb: |