summaryrefslogtreecommitdiff
path: root/ld/scripttempl/st2000.sc
diff options
context:
space:
mode:
Diffstat (limited to 'ld/scripttempl/st2000.sc')
-rw-r--r--ld/scripttempl/st2000.sc26
1 files changed, 0 insertions, 26 deletions
diff --git a/ld/scripttempl/st2000.sc b/ld/scripttempl/st2000.sc
deleted file mode 100644
index 7ee132a8b26..00000000000
--- a/ld/scripttempl/st2000.sc
+++ /dev/null
@@ -1,26 +0,0 @@
-cat <<EOF
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-OUTPUT_ARCH(${ARCH})
-
-
-SECTIONS
-{
-.text :
- {
- *(.text)
- *(.strings)
- _etext = .;
- *(.data)
- _edata = .;
- *(.bss)
- *(COMMON)
- _end = .;
-
-}
-
-}
-EOF
-
-
-
-