mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss section where it was present.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss
|
||||||
|
section where it was present.
|
||||||
|
|
||||||
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ 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
|
||||||
@@ -157,11 +158,11 @@ SECTIONS
|
|||||||
*(.scommon)
|
*(.scommon)
|
||||||
} >ram
|
} >ram
|
||||||
|
|
||||||
.bss (NOLOAD):
|
|
||||||
|
.bss :
|
||||||
{
|
{
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
*(.reginfo)
|
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (64);
|
. = ALIGN (64);
|
||||||
_stack_limit = .;
|
_stack_limit = .;
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss
|
||||||
|
section where it was present.
|
||||||
|
|
||||||
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|||||||
@@ -156,11 +156,10 @@ SECTIONS
|
|||||||
} >ram
|
} >ram
|
||||||
|
|
||||||
|
|
||||||
.bss (NOLOAD):
|
.bss :
|
||||||
{
|
{
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
*(.reginfo)
|
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (64);
|
. = ALIGN (64);
|
||||||
_stack_limit = .;
|
_stack_limit = .;
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss
|
||||||
|
section where it was present.
|
||||||
|
|
||||||
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|||||||
@@ -136,11 +136,9 @@ SECTIONS
|
|||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
|
.bss : {
|
||||||
.bss (NOLOAD): {
|
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.reginfo)
|
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (64);
|
. = ALIGN (64);
|
||||||
_stack_limit = .;
|
_stack_limit = .;
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss
|
||||||
|
section where it was present.
|
||||||
|
|
||||||
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|||||||
@@ -137,11 +137,9 @@ SECTIONS
|
|||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
|
.bss : {
|
||||||
.bss (NOLOAD): {
|
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.reginfo)
|
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (64);
|
. = ALIGN (64);
|
||||||
_stack_limit = .;
|
_stack_limit = .;
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss
|
||||||
|
section where it was present.
|
||||||
|
|
||||||
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
|
||||||
|
|||||||
@@ -137,11 +137,9 @@ SECTIONS
|
|||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
}
|
}
|
||||||
|
.bss : {
|
||||||
.bss (NOLOAD): {
|
|
||||||
_bss_start = . ;
|
_bss_start = . ;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.reginfo)
|
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN (64);
|
. = ALIGN (64);
|
||||||
_stack_limit = .;
|
_stack_limit = .;
|
||||||
|
|||||||
Reference in New Issue
Block a user