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:
Joel Sherrill
2010-04-27 17:11:10 +00:00
parent 980ee08fa9
commit 2b2e3ef5f9
10 changed files with 32 additions and 13 deletions

View File

@@ -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>
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.

View File

@@ -19,6 +19,7 @@ RamSize = _sdram_size;
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x4000;
MEMORY
{
ram : ORIGIN = 0x80400000, LENGTH = 12M
@@ -157,11 +158,11 @@ SECTIONS
*(.scommon)
} >ram
.bss (NOLOAD):
.bss :
{
_bss_start = . ;
*(.bss .bss.* .gnu.linkonce.b.*)
*(.reginfo)
*(COMMON)
. = ALIGN (64);
_stack_limit = .;

View File

@@ -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>
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.

View File

@@ -156,11 +156,10 @@ SECTIONS
} >ram
.bss (NOLOAD):
.bss :
{
_bss_start = . ;
*(.bss .bss.* .gnu.linkonce.b.*)
*(.reginfo)
*(COMMON)
. = ALIGN (64);
_stack_limit = .;

View File

@@ -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>
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.

View File

@@ -136,11 +136,9 @@ SECTIONS
*(.sbss)
*(.scommon)
}
.bss (NOLOAD): {
.bss : {
_bss_start = . ;
*(.bss)
*(.reginfo)
*(COMMON)
. = ALIGN (64);
_stack_limit = .;

View File

@@ -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>
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.

View File

@@ -137,11 +137,9 @@ SECTIONS
*(.sbss)
*(.scommon)
}
.bss (NOLOAD): {
.bss : {
_bss_start = . ;
*(.bss)
*(.reginfo)
*(COMMON)
. = ALIGN (64);
_stack_limit = .;

View File

@@ -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>
* startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.

View File

@@ -137,11 +137,9 @@ SECTIONS
*(.sbss)
*(.scommon)
}
.bss (NOLOAD): {
.bss : {
_bss_start = . ;
*(.bss)
*(.reginfo)
*(COMMON)
. = ALIGN (64);
_stack_limit = .;