summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds')
-rw-r--r--c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds35
1 files changed, 35 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds b/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds
new file mode 100644
index 0000000000..57d1f5c96a
--- /dev/null
+++ b/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds
@@ -0,0 +1,35 @@
+/* Script for -n: mix text and data on same page */
+OUTPUT_FORMAT("elf32-hppa")
+OUTPUT_ARCH(hppa)
+ENTRY("$START$")
+SEARCH_DIR("/opt/rtems/hppa1.1-rtems/lib");
+SECTIONS
+{
+ .text 0x1000 +0x1000:
+ {
+ __text_start = .;
+ CREATE_OBJECT_SYMBOLS
+ *(.PARISC.stubs)
+ *(.text)
+ etext = .;
+ _etext = .;
+ }
+ . = 0x40000000;
+ .data :
+ {
+ . = . + 0x1000 ;
+ __data_start = .;
+ *(.data)
+ CONSTRUCTORS
+ edata = .;
+ _edata = .;
+ }
+ . = 0x40000000 + SIZEOF(.data);
+ .bss :
+ {
+ *(.bss)
+ *(COMMON)
+ end = . ;
+ _end = . ;
+ }
+}