diff options
author | Simon Glass <sjg@chromium.org> | 2011-11-21 10:49:41 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-03-30 07:43:40 +0200 |
commit | 9492791ab462c586424217f4b6e34f61f9ef5461 (patch) | |
tree | 16940ded8fec1d33f11b3853cff639470b01741f /arch/arm | |
parent | 7e6403a66d9a9c939ee8146436d7d652673b2995 (diff) | |
download | u-boot-imx-9492791ab462c586424217f4b6e34f61f9ef5461.zip u-boot-imx-9492791ab462c586424217f4b6e34f61f9ef5461.tar.gz u-boot-imx-9492791ab462c586424217f4b6e34f61f9ef5461.tar.bz2 |
arm: Remove unneeded setting of LDCSRIPT
This is set by the top level Makefile anyway, so drop it. This does
have the effect of changing the order - now the board link script will
have preference over the CPU one. But this seems more correct anyway.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/config.mk | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/arm/config.mk b/arch/arm/config.mk index 45f9dca..3c5f987 100644 --- a/arch/arm/config.mk +++ b/arch/arm/config.mk @@ -70,13 +70,6 @@ PLATFORM_LIBS := $(OBJTREE)/arch/arm/lib/eabi_compat.o \ endif endif -ifdef CONFIG_SYS_LDSCRIPT -# need to strip off double quotes -LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT)) -else -LDSCRIPT := $(SRCTREE)/$(CPUDIR)/u-boot.lds -endif - # needed for relocation ifndef CONFIG_NAND_SPL LDFLAGS_u-boot += -pie |