From 5c2b9045e0a3ddae3b52bce52a3971014b8e1373 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 29 Oct 2001 14:27:47 +0000 Subject: 2001-10-29 Joel Sherrill * include/bsp.h: Modify Install_tm27_vector() so this BSP will link tm27. * startup/linkcmds: Fix definition of .init and .fini sections so this BSP will properly link with new __USE_INIT_FINI__ support. --- c/src/lib/libbsp/powerpc/eth_comm/startup/linkcmds | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/src/lib/libbsp/powerpc/eth_comm/startup/linkcmds') diff --git a/c/src/lib/libbsp/powerpc/eth_comm/startup/linkcmds b/c/src/lib/libbsp/powerpc/eth_comm/startup/linkcmds index 00fa37a136..a40d043908 100644 --- a/c/src/lib/libbsp/powerpc/eth_comm/startup/linkcmds +++ b/c/src/lib/libbsp/powerpc/eth_comm/startup/linkcmds @@ -64,8 +64,8 @@ SECTIONS *(.lit) *(.shdata) - .init : { _init = .; *(.init) } - .fini : { _fini = .; *(.fini) } + _init = .; *(.init) + _fini = .; *(.fini) _endtext = .; text.end = .; } > ram -- cgit v1.2.3