summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds46
1 files changed, 0 insertions, 46 deletions
diff --git a/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds b/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds
deleted file mode 100644
index dc2245d1c8..0000000000
--- a/c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds
+++ /dev/null
@@ -1,46 +0,0 @@
-/* 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)
-
- /*
- * Special FreeBSD sysctl sections.
- */
- . = ALIGN (16);
- __start_set_sysctl_set = .;
- *(set_sysctl_*);
- __stop_set_sysctl_set = ABSOLUTE(.);
- *(set_domain_*);
- *(set_pseudo_*);
-
- etext = .;
- _etext = .;
- }
- . = 0x40000000;
- .data :
- {
- . = . + 0x1000 ;
- __data_start = .;
- *(.data)
- CONSTRUCTORS
- edata = .;
- _edata = .;
- }
- . = 0x40000000 + SIZEOF(.data);
- .bss :
- {
- *(.bss)
- *(COMMON)
- end = . ;
- _end = . ;
- }
-}