forked from Imagelibrary/rtems
2004-11-05 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Add .gnu.linkonce.b section and account for memory area being named sdram NOT RAM.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2004-11-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add .gnu.linkonce.b section and account for memory
|
||||||
|
area being named sdram NOT RAM.
|
||||||
|
|
||||||
2004-10-21 Ralf Corsepius <ralf_corsepius@rtems.org>
|
2004-10-21 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||||
|
|
||||||
* startup/bspstart.c: Use POSIX fixed size types.
|
* startup/bspstart.c: Use POSIX fixed size types.
|
||||||
|
|||||||
@@ -142,10 +142,10 @@ SECTIONS
|
|||||||
_edata = .;
|
_edata = .;
|
||||||
} > sdram
|
} > sdram
|
||||||
|
|
||||||
.eh_frame : { *(.eh_frame) } > RAM
|
.eh_frame : { *(.eh_frame) } > sdram
|
||||||
.data1 : { *(.data1) } > RAM
|
.data1 : { *(.data1) } > sdram
|
||||||
.eh_frame : { *(.eh_frame) } > RAM
|
.eh_frame : { *(.eh_frame) } > sdram
|
||||||
.gcc_except_table : { *(.gcc_except_table) } > RAM
|
.gcc_except_table : { *(.gcc_except_table) } > sdram
|
||||||
|
|
||||||
.rodata :
|
.rodata :
|
||||||
{
|
{
|
||||||
@@ -160,6 +160,7 @@ SECTIONS
|
|||||||
_clear_start = .;
|
_clear_start = .;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(64);
|
. = ALIGN(64);
|
||||||
_clear_end = .;
|
_clear_end = .;
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2004-11-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* startup/linkcmds: Add .gnu.linkonce.b section and account for memory
|
||||||
|
area being named sdram NOT RAM.
|
||||||
|
|
||||||
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
|
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||||
|
|
||||||
* configure.ac: Require automake > 1.9.
|
* configure.ac: Require automake > 1.9.
|
||||||
|
|||||||
@@ -139,10 +139,10 @@ SECTIONS
|
|||||||
_edata = .;
|
_edata = .;
|
||||||
} > sdram
|
} > sdram
|
||||||
|
|
||||||
.eh_frame : { *(.eh_frame) } > RAM
|
.eh_frame : { *(.eh_frame) } > sdram
|
||||||
.data1 : { *(.data1) } > RAM
|
.data1 : { *(.data1) } > sdram
|
||||||
.eh_frame : { *(.eh_frame) } > RAM
|
.eh_frame : { *(.eh_frame) } > sdram
|
||||||
.gcc_except_table : { *(.gcc_except_table) } > RAM
|
.gcc_except_table : { *(.gcc_except_table) } > sdram
|
||||||
|
|
||||||
.rodata :
|
.rodata :
|
||||||
{
|
{
|
||||||
@@ -157,6 +157,7 @@ SECTIONS
|
|||||||
_clear_start = .;
|
_clear_start = .;
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(64);
|
. = ALIGN(64);
|
||||||
_clear_end = .;
|
_clear_end = .;
|
||||||
|
|||||||
Reference in New Issue
Block a user