summaryrefslogtreecommitdiff
path: root/include/configs/tcm-bf537.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-11-20 00:28:56 (GMT)
committerMike Frysinger <vapier@gentoo.org>2010-11-20 00:30:59 (GMT)
commitc70e7ddb7e15e768d79edcbc4322d735e65ec31f (patch)
treedf34e342e1904666f4eda84d123edad1a9f72d5c /include/configs/tcm-bf537.h
parent4024242669a47cd4e138d0b6805a24e6d3d270e7 (diff)
downloadu-boot-fsl-qoriq-c70e7ddb7e15e768d79edcbc4322d735e65ec31f.tar.xz
Blackfin: tweak objects specified before embedded environment
The partial linking patch changes how objects are specified to the linker and breaks boards with an embedded environment. So we need to tweak the list of objects we specify via the linker script that go in the gap before the embedded env to work with this new behavior. This fixes linker errors for all the boards in question. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/configs/tcm-bf537.h')
-rw-r--r--include/configs/tcm-bf537.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/configs/tcm-bf537.h b/include/configs/tcm-bf537.h
index dceff30..9036ce3 100644
--- a/include/configs/tcm-bf537.h
+++ b/include/configs/tcm-bf537.h
@@ -104,13 +104,10 @@
* it linked after the configuration sector.
*/
# define LDS_BOARD_TEXT \
- arch/blackfin/cpu/traps.o (.text .text.*); \
- arch/blackfin/cpu/interrupt.o (.text .text.*); \
- arch/blackfin/cpu/serial.o (.text .text.*); \
- common/dlmalloc.o (.text .text.*); \
- lib/crc32.o (.text .text.*); \
+ arch/blackfin/lib/libblackfin.o (.text*); \
+ arch/blackfin/cpu/libblackfin.o (.text*); \
. = DEFINED(env_offset) ? env_offset : .; \
- common/env_embedded.o (.text .text.*);
+ common/env_embedded.o (.text*);
#endif