summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/uC5282/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:16:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-16 22:16:26 +0000
commit4c5212e2701b7fe9738060231f9176696808aae6 (patch)
tree638456e822fe03aed940b5e8302501cec449e3ed /c/src/lib/libbsp/m68k/uC5282/startup/linkcmds
parent2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-4c5212e2701b7fe9738060231f9176696808aae6.tar.bz2
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, startup/bspstart.c, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/uC5282/startup/linkcmds8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/m68k/uC5282/startup/linkcmds b/c/src/lib/libbsp/m68k/uC5282/startup/linkcmds
index 6c82f6d91a..58e3c6155f 100644
--- a/c/src/lib/libbsp/m68k/uC5282/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/uC5282/startup/linkcmds
@@ -17,9 +17,9 @@
/*
* Declare some locations and sizes.
*/
-_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0;
-_RamSize = DEFINED(_RamSize) ? _RamSize : 16M;
-_HeapSize = DEFINED(_HeapSize) ? _HeapSize : 0;
+RamBase = DEFINED(RamBase) ? RamBase : 0x0;
+RamSize = DEFINED(RamSize) ? RamSize : 16M;
+HeapSize = DEFINED(HeapSize) ? HeapSize : 0;
_FlashBase = DEFINED(_FlashBase) ? _FlashBase : 0x10000000;
_FlashSize = DEFINED(_FlashSize) ? _FlashSize : 4M ;
@@ -166,7 +166,7 @@ SECTIONS
. = ALIGN (16);
PROVIDE (end = .);
_clear_end = .;
- _WorkspaceBase = .;
+ WorkAreaBase = .;
} >ram
/* Stabs debugging sections. */