summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/efi68k/startup/linkcmds
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-13 15:07:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-13 15:07:03 +0000
commit9b2c9693692991016e1674856fa147b65156a718 (patch)
tree55e30d6264f3f1231f05e61173787220cc56835d /c/src/lib/libbsp/m68k/efi68k/startup/linkcmds
parentNew patch from Eric Norum plus some minor mods by Joel. (diff)
downloadrtems-9b2c9693692991016e1674856fa147b65156a718.tar.bz2
Made sweep of changes to get all BSPs to the same point on the linkcmds
and memory layout. Next step is to share the same bsp_pretasking_hook.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/efi68k/startup/linkcmds5
1 files changed, 2 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/m68k/efi68k/startup/linkcmds b/c/src/lib/libbsp/m68k/efi68k/startup/linkcmds
index c01b91a331..775c84d955 100644
--- a/c/src/lib/libbsp/m68k/efi68k/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/efi68k/startup/linkcmds
@@ -20,7 +20,7 @@ __DYNAMIC = 0;
* | _edata |
* +--------------------+
* | .bss |
- * | __bss_start | start of bss, cleared by crt0
+ * | _clear_start| start of bss, cleared by crt0
* | _end | start of heap, used by sbrk()
* +--------------------+
* | heap space |
@@ -144,7 +144,6 @@ SECTIONS
PROVIDE (_copy_end = .);
} >ram
.bss : {
- PROVIDE (_bss_start = .);
PROVIDE (_clear_start = .);
*(.bss)
*(COMMON)
@@ -159,7 +158,7 @@ SECTIONS
. += HeapSize;
PROVIDE (_HeapEnd = .);
- clear_end = .;
+ PROVIDE (_clear_end = .);
PROVIDE (_WorkspaceBase = .);
} >ram