diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-03-05 16:59:39 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-07 10:59:06 -0500 |
commit | a0a15b441cfd5a192aacfb88a8d062d008488614 (patch) | |
tree | fe8d468677c9322ec1dbe5e82ef2ee21e7bcf5ea /arch/mips/cpu/mips32/config.mk | |
parent | cd2e46cb38d5aeada2b2c2f881cdc6baa672dc09 (diff) | |
download | u-boot-imx-a0a15b441cfd5a192aacfb88a8d062d008488614.zip u-boot-imx-a0a15b441cfd5a192aacfb88a8d062d008488614.tar.gz u-boot-imx-a0a15b441cfd5a192aacfb88a8d062d008488614.tar.bz2 |
config.mk: specify the exact path to standalone linker script
We want to change the build system to include config.mk
only from ./Makefile and spl/Makefile.
We must prepare for that in this commit.
$(src) is a moving target and not handy for our purpose.
We must replace it with a fixed path.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/mips/cpu/mips32/config.mk')
-rw-r--r-- | arch/mips/cpu/mips32/config.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/cpu/mips32/config.mk b/arch/mips/cpu/mips32/config.mk index 7ee7faa..cd4ce7a 100644 --- a/arch/mips/cpu/mips32/config.mk +++ b/arch/mips/cpu/mips32/config.mk @@ -21,4 +21,5 @@ else PLATFORM_LDFLAGS += -m elf32ltsmip endif -CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 -T $(srctree)/$(src)/mips.lds +CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 \ + -T $(srctree)/examples/standalone/mips.lds |