mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 23:23:13 +00:00
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|
||||||
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* bsp_specs: Remove extra } to eliminate warning.
|
* bsp_specs: Remove extra } to eliminate warning.
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ RamSize = _sdram_size;
|
|||||||
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
|
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
|
||||||
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x4000;
|
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x4000;
|
||||||
|
|
||||||
|
|
||||||
MEMORY
|
MEMORY
|
||||||
{
|
{
|
||||||
ram : ORIGIN = 0x80400000, LENGTH = 12M
|
ram : ORIGIN = 0x80400000, LENGTH = 12M
|
||||||
@@ -158,8 +157,7 @@ SECTIONS
|
|||||||
*(.scommon)
|
*(.scommon)
|
||||||
} >ram
|
} >ram
|
||||||
|
|
||||||
|
.bss (NOLOAD):
|
||||||
.bss :
|
|
||||||
{
|
{
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|
||||||
2010-04-14 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2010-04-14 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* console/conscfg.c: Include <unistd.h>.
|
* console/conscfg.c: Include <unistd.h>.
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
|
|
||||||
|
|
||||||
.bss :
|
.bss (NOLOAD):
|
||||||
{
|
{
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|
||||||
2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* make/custom/hurricane.cfg: Remove RTEMS_BSP_FAMILY.
|
* make/custom/hurricane.cfg: Remove RTEMS_BSP_FAMILY.
|
||||||
|
|||||||
@@ -136,7 +136,8 @@ SECTIONS
|
|||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
.bss : {
|
|
||||||
|
.bss (NOLOAD): {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.reginfo)
|
*(.reginfo)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|
||||||
2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* clock/clockdrv.c: Split hardware initialization code into
|
* clock/clockdrv.c: Split hardware initialization code into
|
||||||
|
|||||||
@@ -130,7 +130,8 @@ SECTIONS
|
|||||||
*(.sbss*)
|
*(.sbss*)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
.bss : {
|
|
||||||
|
.bss (NOLOAD): {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss*)
|
*(.bss*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|
||||||
2010-04-24 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2010-04-24 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* start/start.S: Verify boot_card is invoked properly with argc, argv.
|
* start/start.S: Verify boot_card is invoked properly with argc, argv.
|
||||||
|
|||||||
@@ -137,7 +137,8 @@ SECTIONS
|
|||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
.bss : {
|
|
||||||
|
.bss (NOLOAD): {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.reginfo)
|
*(.reginfo)
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|
||||||
2010-04-24 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2010-04-24 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* start/start.S: Verify boot_card is invoked properly with argc, argv.
|
* start/start.S: Verify boot_card is invoked properly with argc, argv.
|
||||||
|
|||||||
@@ -137,7 +137,8 @@ SECTIONS
|
|||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
.bss : {
|
|
||||||
|
.bss (NOLOAD): {
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.reginfo)
|
*(.reginfo)
|
||||||
|
|||||||
Reference in New Issue
Block a user