2006-01-10 Joel Sherrill <joel@OARcorp.com>

* startup/linkcmds: Merge from 4.6 branch. Now the copy_data loop
	works.
This commit is contained in:
Joel Sherrill
2006-01-10 18:25:28 +00:00
parent 4ba16fa5be
commit 8e227aa893
2 changed files with 14 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2006-01-10 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Merge from 4.6 branch. Now the copy_data loop
works.
2006-01-10 Joel Sherrill <joel@OARcorp.com> 2006-01-10 Joel Sherrill <joel@OARcorp.com>
* configure.ac: Add configuration for ENABLE_SIS_QUIRKS. * configure.ac: Add configuration for ENABLE_SIS_QUIRKS.

View File

@@ -138,15 +138,6 @@ SECTIONS
. = ALIGN (16); . = ALIGN (16);
_endtext = .; _endtext = .;
} > ram } > ram
.dynamic : { *(.dynamic) } >ram
.jcr : { *(.jcr) } >ram
.got : { *(.got) } >ram
.plt : { *(.plt) } >ram
.hash : { *(.hash) } >ram
.dynrel : { *(.dynrel) } >ram
.dynsym : { *(.dynsym) } >ram
.dynstr : { *(.dynstr) } >ram
.hash : { *(.hash) } >ram
.data : .data :
{ {
data_start = .; data_start = .;
@@ -159,6 +150,15 @@ SECTIONS
edata = .; edata = .;
_edata = .; _edata = .;
} > ram } > ram
.dynamic : { *(.dynamic) } >ram
.jcr : { *(.jcr) } >ram
.got : { *(.got) } >ram
.plt : { *(.plt) } >ram
.hash : { *(.hash) } >ram
.dynrel : { *(.dynrel) } >ram
.dynsym : { *(.dynsym) } >ram
.dynstr : { *(.dynstr) } >ram
.hash : { *(.hash) } >ram
.shbss : .shbss :
{ {
*(.shbss) *(.shbss)