2009-04-28 Chris Johns <chrisj@rtems.org>

* startup/linkcmds: Add .data.* for the C++ test.
        * include/bsp.c: Add BSP_SMALL_MEMORY.
This commit is contained in:
Chris Johns
2009-04-28 04:56:22 +00:00
parent 3bbe1b1bea
commit a263aa724d
3 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2009-04-28 Chris Johns <chrisj@rtems.org>
* startup/linkcmds: Add .data.* for the C++ test.
* include/bsp.c: Add BSP_SMALL_MEMORY.
2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com> 2008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* bsp_specs: Move -e start from *link to *startfile to avoid warning * bsp_specs: Move -e start from *link to *startfile to avoid warning

View File

@@ -17,6 +17,8 @@ extern "C" {
#include <rtems/iosupp.h> #include <rtems/iosupp.h>
#include <rtems/bspIo.h> #include <rtems/bspIo.h>
#define BSP_SMALL_MEMORY 1
/***************************************************************************/ /***************************************************************************/
/** Hardware data structure headers **/ /** Hardware data structure headers **/
#include <mcf5223x/mcf5223x.h> #include <mcf5223x/mcf5223x.h>

View File

@@ -128,6 +128,7 @@ SECTIONS
PROVIDE( _data_dest_start = . ); PROVIDE( _data_dest_start = . );
PROVIDE( _copy_start = .); PROVIDE( _copy_start = .);
*(.data) *(.data)
*(.data.*)
*(.gnu.linkonce.d*) *(.gnu.linkonce.d*)
*(.gcc_except_table*) *(.gcc_except_table*)
*(.jcr) *(.jcr)