mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-23 17:39:05 +08:00
Minor corrections from Jay Kulpinski <jskulpin@eng01.gdds.com>.
This first one below looked like it only belonged in a
virtual memory environment. The second one was causing
problems without the PROVIDE() - I don't know why.
This commit is contained in:
@@ -89,7 +89,7 @@ SECTIONS
|
||||
important than losing a page of the virtual address space (note
|
||||
that no actual memory is lost; the page which is skipped can not
|
||||
be referenced). */
|
||||
. = ALIGN(8) + 0x40000;
|
||||
/* . = ALIGN(8) + 0x40000; */
|
||||
.data :
|
||||
{
|
||||
*(.data)
|
||||
@@ -161,8 +161,8 @@ SECTIONS
|
||||
} >RAM
|
||||
. = ALIGN(8) + 0x8000;
|
||||
PROVIDE(__stack = .);
|
||||
_end = . ;
|
||||
PROVIDE (end = .);
|
||||
PROVIDE(_end = .);
|
||||
PROVIDE(end = .);
|
||||
|
||||
/* These are needed for ELF backends which have not yet been
|
||||
converted to the new style linker. */
|
||||
|
||||
Reference in New Issue
Block a user