diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2006-01-18 10:57:19 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2006-01-18 10:57:19 +0000 |
commit | b985a434a0c248989aa63a1a3e91ee10c4dd3476 (patch) | |
tree | 0d122b37dc34422bac2394ff0f2dc7ff5e5a425a | |
parent | 7c9feabf980bfd934d0fb9e8e97f673ee852053e (diff) | |
download | cygnal-b985a434a0c248989aa63a1a3e91ee10c4dd3476.tar.gz cygnal-b985a434a0c248989aa63a1a3e91ee10c4dd3476.tar.bz2 cygnal-b985a434a0c248989aa63a1a3e91ee10c4dd3476.zip |
* mt/ms2.ld (.sram): Correct typo in section names.
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/mt/ms2.ld | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index bc680064c..e2b400040 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2006-01-18 Nathan Sidwell <nathan@codesourcery.com> + + * mt/ms2.ld (.sram): Correct typo in section names. + 2006-01-16 Nathan Sidwell <nathan@codesourcery.com> * mt/Makefile.in (SCRIPTS, CRT0): Add ms2 files. diff --git a/libgloss/mt/ms2.ld b/libgloss/mt/ms2.ld index 0c6bdf20f..3dac307af 100644 --- a/libgloss/mt/ms2.ld +++ b/libgloss/mt/ms2.ld @@ -210,9 +210,9 @@ SECTIONS /* For now, locate data ahead of code in onchip sram/memory. */ .sram : AT (LOADADDR(.auxdata) + SIZEOF(.auxdata)) { - *(.data.sram) + *(.sram.data) . = ALIGN(4) ; /* Make sure that instructions are aligned... */ - *(.text.sram) + *(.sram.text) } >sram _sram_data_start = LOADADDR ( .sram ); |