diff options
author | Stelian Pop <stelian@popies.net> | 2008-05-08 20:52:13 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-05-10 11:32:06 +0200 |
commit | 11b162bae058e96c7929e358d4adff2bee6c2cc4 (patch) | |
tree | caa9374d9587df870e89a941128c0464eb892598 /cpu/arm926ejs/at91sam9/config.mk | |
parent | d48abea4b89adaf5e45ea75b5e38c0d8de179ece (diff) | |
download | u-boot-imx-11b162bae058e96c7929e358d4adff2bee6c2cc4.zip u-boot-imx-11b162bae058e96c7929e358d4adff2bee6c2cc4.tar.gz u-boot-imx-11b162bae058e96c7929e358d4adff2bee6c2cc4.tar.bz2 |
Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
below avoids the duplication of u-boot.lds by putting the file in the
cpu directory instead of the board one.
Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/arm926ejs/at91sam9/config.mk')
-rw-r--r-- | cpu/arm926ejs/at91sam9/config.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/arm926ejs/at91sam9/config.mk b/cpu/arm926ejs/at91sam9/config.mk index ca2cae1..83040eb 100644 --- a/cpu/arm926ejs/at91sam9/config.mk +++ b/cpu/arm926ejs/at91sam9/config.mk @@ -1,2 +1,3 @@ PLATFORM_CPPFLAGS += -march=armv5te PLATFORM_CPPFLAGS += $(call cc-option,-mtune=arm926ejs,) +LDSCRIPT := $(SRCTREE)/cpu/arm926ejs/at91sam9/u-boot.lds |