avr32: fix linking of atstk100x and favr32 boards

When building some avr32 boards out of tree (e.g. O=..) the linker script could
not be found. This patch references the linker script in source tree.

Signed-off-by: Andreas Biemann <biessmann@corscience.de>
This commit is contained in:
Andreas Bießmann 2010-06-09 10:27:32 +02:00 committed by Wolfgang Denk
parent eb70d05d74
commit 418cbb0abc
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
PLATFORM_LDFLAGS += --gc-sections
TEXT_BASE = 0x00000000
LDSCRIPT = $(obj)board/atmel/atstk1000/u-boot.lds
LDSCRIPT = $(src)board/atmel/atstk1000/u-boot.lds

View File

@ -1,4 +1,4 @@
PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
PLATFORM_LDFLAGS += --gc-sections
TEXT_BASE = 0x00000000
LDSCRIPT = $(obj)board/earthlcd/favr-32-ezkit/u-boot.lds
LDSCRIPT = $(src)board/earthlcd/favr-32-ezkit/u-boot.lds