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 '')
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/startup/linkcmds10
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.bootp10
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.prom10
3 files changed, 15 insertions, 15 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
/*
diff --git a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.bootp b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.bootp
index eb9f7fcad3..61f19bc6ff 100644
--- a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.bootp
+++ b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.bootp
@@ -19,9 +19,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;
/*
@@ -49,7 +49,7 @@ SECTIONS {
* Dynamic RAM
*/
ram : {
- _RamBase = .;
+ RamBase = .;
} >ram
/*
@@ -138,7 +138,7 @@ SECTIONS {
_stack_init = .;
_clear_end = .;
- _WorkspaceBase = .;
+ WorkAreaBase = .;
} >myram
/*
diff --git a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.prom b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.prom
index db0a5fe94a..ada1411e9e 100644
--- a/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.prom
+++ b/c/src/lib/libbsp/m68k/gen68360/startup/linkcmds.prom
@@ -19,9 +19,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;
/*
@@ -48,7 +48,7 @@ SECTIONS {
* Dynamic RAM
*/
ram : {
- _RamBase = .;
+ RamBase = .;
} >ram
/*
@@ -136,7 +136,7 @@ SECTIONS {
_stack_init = .;
_clear_end = .;
- _WorkspaceBase = .;
+ WorkAreaBase = .;
} >ram
/*