summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-14 22:33:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-14 22:33:30 +0000
commit3c87bb9cefef527457d4fec9bfb79eff3d2f9066 (patch)
treeb90ad916bb7714a1da10a7c0687c4ba2b910b827
parentBug report from Ralf on UNIX port where the S_IR* constants were not (diff)
downloadrtems-3c87bb9cefef527457d4fec9bfb79eff3d2f9066.tar.bz2
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.
-rw-r--r--c/src/lib/libbsp/powerpc/psim/startup/linkcmds6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/powerpc/psim/startup/linkcmds b/c/src/lib/libbsp/powerpc/psim/startup/linkcmds
index 2ed57ba0fc..d7867112d8 100644
--- a/c/src/lib/libbsp/powerpc/psim/startup/linkcmds
+++ b/c/src/lib/libbsp/powerpc/psim/startup/linkcmds
@@ -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. */