summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/mvme167/startup/linkcmds')
-rw-r--r--c/src/lib/libbsp/m68k/mvme167/startup/linkcmds35
1 files changed, 0 insertions, 35 deletions
diff --git a/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds b/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds
deleted file mode 100644
index dc50449b29..0000000000
--- a/c/src/lib/libbsp/m68k/mvme167/startup/linkcmds
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * This file contains directives for the GNU linker which are specific
- * to the Motorola MVME167 board.
- *
- * Copyright (c) 1999, National Research Council of Canada.
- * Some of this material was copied from binutils-2.9.4 linker scripts,
- * and is therefore likely to be copyrighted by the Free Software
- * Foundation, even though explicit copyright notices did not appear in
- * those files.
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-RamBase = DEFINED(RamBase) ? RamBase : 0x00800000;
-RamSize = DEFINED(RamSize) ? RamSize : 4M;
-
-MEMORY
-{
- /* The location of RAM is the address space is configurable.
- This is where we put one board. The base address should be
- passed as a parameter when building multiprocessor images
- where each board resides at a different address. */
- ram : org = RamBase, l = RamSize
- rom : org = 0xFF800000, l = 4M
- sram : org = 0xFFE00000, l = 128K
-}
-
-REGION_ALIAS ("REGION_TEXT", ram);
-REGION_ALIAS ("REGION_TEXT_LOAD", ram);
-REGION_ALIAS ("REGION_DATA", ram);
-REGION_ALIAS ("REGION_DATA_LOAD", ram);
-
-INCLUDE linkcmds.base