forked from Imagelibrary/rtems
2007-05-03 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Handle .data.* sections
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data SIZEOF(.tors) + ADDR(.tors):
|
.data SIZEOF(.tors) + ADDR(.tors):
|
||||||
{
|
{
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gcc_exc*)
|
*(.gcc_exc*)
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
_edata = .;
|
_edata = .;
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ SECTIONS
|
|||||||
AT ( _rom_data_start )
|
AT ( _rom_data_start )
|
||||||
{
|
{
|
||||||
_sdata = .;
|
_sdata = .;
|
||||||
*(.data);
|
*(.data*);
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
_edata = .;
|
_edata = .;
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the Arcturus uC DIMM ColdFire 5282
|
* to the Arcturus uC DIMM ColdFire 5282
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -139,7 +139,7 @@ SECTIONS
|
|||||||
.data : {
|
.data : {
|
||||||
PROVIDE( _data_dest_start = . );
|
PROVIDE( _data_dest_start = . );
|
||||||
PROVIDE( _copy_start = .);
|
PROVIDE( _copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ SECTIONS
|
|||||||
copy_start = .;
|
copy_start = .;
|
||||||
*(.shdata)
|
*(.shdata)
|
||||||
. = ALIGN (0x10);
|
. = ALIGN (0x10);
|
||||||
*(.data)
|
*(.data*)
|
||||||
. = ALIGN (0x10);
|
. = ALIGN (0x10);
|
||||||
*(.gcc_exc)
|
*(.gcc_exc)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the DY-4 DMV152/SVME153 boards.
|
* to the DY-4 DMV152/SVME153 boards.
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-2003.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -115,7 +115,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
copy_start = .;
|
copy_start = .;
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the Generic MC68302 board.
|
* to the Generic MC68302 board.
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -118,7 +118,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ SECTIONS {
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ SECTIONS {
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
_copy_start = .;
|
_copy_start = .;
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ SECTIONS
|
|||||||
copy_start = .;
|
copy_start = .;
|
||||||
*(.shdata)
|
*(.shdata)
|
||||||
. = ALIGN (0x10);
|
. = ALIGN (0x10);
|
||||||
*(.data)
|
*(.data*)
|
||||||
. = ALIGN (0x10);
|
. = ALIGN (0x10);
|
||||||
*(.gcc_exc)
|
*(.gcc_exc)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ SECTIONS
|
|||||||
.data : {
|
.data : {
|
||||||
PROVIDE( _data_dest_start = . );
|
PROVIDE( _data_dest_start = . );
|
||||||
PROVIDE( _copy_start = .);
|
PROVIDE( _copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-05-01 Joel Sherrill <joel@OARcorp.com>
|
2007-05-01 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* Makefile.am: Minor rework to shrink minimum size to <48K.
|
* Makefile.am: Minor rework to shrink minimum size to <48K.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the Motorola MVME136/MVME135 boards.
|
* to the Motorola MVME136/MVME135 boards.
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -115,7 +115,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the Motorola MVME147 boards.
|
* to the Motorola MVME147 boards.
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -119,7 +119,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the Motorola MVME147 boards.
|
* to the Motorola MVME147 boards.
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -119,7 +119,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* This file contains directives for the GNU linker which are specific
|
* This file contains directives for the GNU linker which are specific
|
||||||
* to the Motorola MVME162 board.
|
* to the Motorola MVME162 board.
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -122,7 +122,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ SECTIONS
|
|||||||
|
|
||||||
.data : {
|
.data : {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ SECTIONS
|
|||||||
.data (ADDR(.vtable) + SIZEOF(.vtable)) :
|
.data (ADDR(.vtable) + SIZEOF(.vtable)) :
|
||||||
AT (ADDR(.text) + SIZEOF(.text)) {
|
AT (ADDR(.text) + SIZEOF(.text)) {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ SECTIONS
|
|||||||
}
|
}
|
||||||
.data 0x80000 : AT (ADDR(.text) + SIZEOF (.text)) {
|
.data 0x80000 : AT (ADDR(.text) + SIZEOF (.text)) {
|
||||||
PROVIDE (_copy_start = .);
|
PROVIDE (_copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* Author: W. Eric Norum <norume@aps.anl.gov>
|
* Author: W. Eric Norum <norume@aps.anl.gov>
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 2005.
|
* COPYRIGHT (c) 2005-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -146,7 +146,7 @@ SECTIONS
|
|||||||
.data : {
|
.data : {
|
||||||
PROVIDE( _data_dest_start = . );
|
PROVIDE( _data_dest_start = . );
|
||||||
PROVIDE( _copy_start = .);
|
PROVIDE( _copy_start = .);
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
*(.jcr)
|
*(.jcr)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ SECTIONS
|
|||||||
. = ALIGN(128) + (. & (128 - 1));
|
. = ALIGN(128) + (. & (128 - 1));
|
||||||
.data . :
|
.data . :
|
||||||
{
|
{
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gcc_exc*)
|
*(.gcc_exc*)
|
||||||
___EH_FRAME_BEGIN__ = .;
|
___EH_FRAME_BEGIN__ = .;
|
||||||
*(.eh_fram*)
|
*(.eh_fram*)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -132,8 +132,7 @@ SECTIONS
|
|||||||
.data :
|
.data :
|
||||||
{
|
{
|
||||||
copy_start = .;
|
copy_start = .;
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.data.*)
|
|
||||||
*(.gcc_exc*)
|
*(.gcc_exc*)
|
||||||
___EH_FRAME_BEGIN__ = .;
|
___EH_FRAME_BEGIN__ = .;
|
||||||
*(.eh_fram*)
|
*(.eh_fram*)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ SECTIONS
|
|||||||
. = ALIGN(128) + (. & (128 - 1));
|
. = ALIGN(128) + (. & (128 - 1));
|
||||||
.data . :
|
.data . :
|
||||||
{
|
{
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gcc_exc*)
|
*(.gcc_exc*)
|
||||||
___EH_FRAME_BEGIN__ = .;
|
___EH_FRAME_BEGIN__ = .;
|
||||||
*(.eh_fram*)
|
*(.eh_fram*)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -157,7 +157,7 @@ SECTIONS
|
|||||||
data_start = .;
|
data_start = .;
|
||||||
_data_start = .;
|
_data_start = .;
|
||||||
_sdata = . ;
|
_sdata = . ;
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
. = ALIGN(0x10);
|
. = ALIGN(0x10);
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ SECTIONS
|
|||||||
data_start = .;
|
data_start = .;
|
||||||
_data_start = .;
|
_data_start = .;
|
||||||
_sdata = . ;
|
_sdata = . ;
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
. = ALIGN(0x10);
|
. = ALIGN(0x10);
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2007-05-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Handle .data.* sections
|
||||||
|
|
||||||
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* bsp_specs: Remove qrtems_debug.
|
* bsp_specs: Remove qrtems_debug.
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ SECTIONS
|
|||||||
data_start = .;
|
data_start = .;
|
||||||
_data_start = .;
|
_data_start = .;
|
||||||
_sdata = . ;
|
_sdata = . ;
|
||||||
*(.data)
|
*(.data*)
|
||||||
*(.gnu.linkonce.d*)
|
*(.gnu.linkonce.d*)
|
||||||
*(.gcc_except_table)
|
*(.gcc_except_table)
|
||||||
. = ALIGN(0x10);
|
. = ALIGN(0x10);
|
||||||
|
|||||||
Reference in New Issue
Block a user