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, 26 insertions, 0 deletions
diff --git a/ld/scripttempl/st2000.sc b/ld/scripttempl/st2000.sc
new file mode 100644
index 00000000000..7ee132a8b26
--- /dev/null
+++ b/ld/scripttempl/st2000.sc
@@ -0,0 +1,26 @@
+cat <<EOF
+OUTPUT_FORMAT("${OUTPUT_FORMAT}")
+OUTPUT_ARCH(${ARCH})
+
+
+SECTIONS
+{
+.text :
+ {
+ *(.text)
+ *(.strings)
+ _etext = .;
+ *(.data)
+ _edata = .;
+ *(.bss)
+ *(COMMON)
+ _end = .;
+
+}
+
+}
+EOF
+
+
+
+