Browse Source

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

cr-0x3b58
Nathan Sidwell 21 years ago
parent
commit
b985a434a0
  1. 4
      libgloss/ChangeLog
  2. 4
      libgloss/mt/ms2.ld

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

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

Loading…
Cancel
Save