summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:15:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:15:59 +0000
commit53cb8234bb7fbdd53f59ff3f2853b6803f6bec41 (patch)
tree386526fc8f8490d1dba80cff8524ba2589d6ce63 /c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
parent2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-53cb8234bb7fbdd53f59ff3f2853b6803f6bec41.tar.bz2
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, include/bsp.h, startup/init68360.c, startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Use top level shared bsp_get_work_area() implementation.
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68360/startup/linkcmds')
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/startup/linkcmds10
1 files changed, 5 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
index 7d481d45dc..4dd7d2178a 100644
--- a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
@@ -15,9 +15,9 @@
* Declare some sizes.
* A heap size of 0 means `use all available memory for the heap'.
*/
-_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0;
-_RamSize = DEFINED(_RamSize) ? _RamSize : 64M;
-_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0x0;
+RamBase = DEFINED(RamBase) ? RamBase : 0x0;
+RamSize = DEFINED(RamSize) ? RamSize : 64M;
+HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x1000;
/*
@@ -44,7 +44,7 @@ SECTIONS {
* Dynamic RAM
*/
ram : {
- _RamBase = .;
+ RamBase = .;
} >ram
/*
@@ -133,7 +133,7 @@ SECTIONS {
_stack_init = .;
_clear_end = .;
- _WorkspaceBase = .;
+ WorkAreaBase = .;
} >ram
/*