* mt/ms2.ld (.sram): Correct typo in section names.

This commit is contained in:
Nathan Sidwell 2006-01-18 10:57:19 +00:00
parent 7c9feabf98
commit b985a434a0
2 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -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 );