diff options
| author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2012-08-21 23:38:25 +0200 |
|---|---|---|
| committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2012-08-24 00:34:47 +0200 |
| commit | 0efcdb15f991386fea9e8de614b058bce759d557 (patch) | |
| tree | 6d475660517088b3a48b7d1743943f1d2902068e | |
| parent | 2c0e3de384f6a3323a1ffbf5db390b3081c3e102 (diff) | |
| download | olio-uboot-2014.01-0efcdb15f991386fea9e8de614b058bce759d557.tar.xz olio-uboot-2014.01-0efcdb15f991386fea9e8de614b058bce759d557.zip | |
MIPS: move CONFIG_STANDALONE_LOAD_ADDR to CPU config makefiles
Prepare for upcoming MIPS64 CPU support.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
| -rw-r--r-- | arch/mips/config.mk | 2 | ||||
| -rw-r--r-- | arch/mips/cpu/mips32/config.mk | 2 | ||||
| -rw-r--r-- | arch/mips/cpu/xburst/config.mk | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/arch/mips/config.mk b/arch/mips/config.mk index b68025616..de9140b67 100644 --- a/arch/mips/config.mk +++ b/arch/mips/config.mk @@ -39,8 +39,6 @@ endif # Default to EB if no endianess is configured ENDIANNESS ?= -EB -CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 -T mips.lds - PLATFORM_CPPFLAGS += -DCONFIG_MIPS -D__MIPS__ # diff --git a/arch/mips/cpu/mips32/config.mk b/arch/mips/cpu/mips32/config.mk index a0e4de500..481e9844d 100644 --- a/arch/mips/cpu/mips32/config.mk +++ b/arch/mips/cpu/mips32/config.mk @@ -30,3 +30,5 @@ MIPSFLAGS := -march=mips32r2 PLATFORM_CPPFLAGS += $(MIPSFLAGS) + +CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 -T mips.lds diff --git a/arch/mips/cpu/xburst/config.mk b/arch/mips/cpu/xburst/config.mk index 18d49ab9d..1536746c9 100644 --- a/arch/mips/cpu/xburst/config.mk +++ b/arch/mips/cpu/xburst/config.mk @@ -21,3 +21,5 @@ # PLATFORM_CPPFLAGS += -march=mips32 + +CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 -T mips.lds |