summaryrefslogtreecommitdiffstats
path: root/arch/mips/dec/boot/ld.ecoff
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2006-09-29 19:06:38 +0100
committerRalf Baechle <ralf@linux-mips.org>2006-10-03 17:59:17 +0100
commit3a42aa934856bfe3f28946f66ea8a5f056445747 (patch)
treea81278384a4b8034d932229ffdcf3f79f7b4cb50 /arch/mips/dec/boot/ld.ecoff
parent0e90f49b112e4c91dee7d61eccc06bcd25b9c534 (diff)
downloadtalos-op-linux-3a42aa934856bfe3f28946f66ea8a5f056445747.tar.gz
talos-op-linux-3a42aa934856bfe3f28946f66ea8a5f056445747.zip
[MIPS] Remove dead DECstation boot code
Code in arch/mips/dec/boot/ has been dead for long. Let's get rid of it before some epidemic spreads. Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/dec/boot/ld.ecoff')
-rw-r--r--arch/mips/dec/boot/ld.ecoff43
1 files changed, 0 insertions, 43 deletions
diff --git a/arch/mips/dec/boot/ld.ecoff b/arch/mips/dec/boot/ld.ecoff
deleted file mode 100644
index aaa633dfb5f7..000000000000
--- a/arch/mips/dec/boot/ld.ecoff
+++ /dev/null
@@ -1,43 +0,0 @@
-OUTPUT_FORMAT("ecoff-littlemips")
-OUTPUT_ARCH(mips)
-ENTRY(dec_entry)
-SECTIONS
-{
- . = 0x80200000;
-
- .text :
- {
- _ftext = .;
- *(.text)
- *(.fixup)
- }
- .rdata :
- {
- *(.rodata .rodata.* .rdata)
- }
- .data :
- {
- . = ALIGN(0x1000);
- ramdisk.img (.data)
- *(.data)
- }
- .sdata :
- {
- *(.sdata)
- }
- _gp = .;
- .sbss :
- {
- *(.sbss)
- *(.scommon)
- }
- .bss :
- {
- *(.dynbss)
- *(.bss)
- *(COMMON)
- }
- /DISCARD/ : {
- *(.reginfo .mdebug .note)
- }
-}
OpenPOWER on IntegriCloud