summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/hppa1.1/simhppa
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-12-19 23:40:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-12-19 23:40:53 +0000
commitb4381dac9b31607d2947d8fb28c2c2cf397d0211 (patch)
tree8af60de1804529c77cdfce742cc20fe9b865b7a0 /c/src/lib/libbsp/hppa1.1/simhppa
parent2002-12-19 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-b4381dac9b31607d2947d8fb28c2c2cf397d0211.tar.bz2
2002-12-19 Joel Sherrill <joel@OARcorp.com>
* start/start.S: Per PR329 now compiles with GNU tools. * startup/linkcmds: New file. Now almost links.
Diffstat (limited to 'c/src/lib/libbsp/hppa1.1/simhppa')
-rw-r--r--c/src/lib/libbsp/hppa1.1/simhppa/ChangeLog5
-rw-r--r--c/src/lib/libbsp/hppa1.1/simhppa/startup/Makefile.am9
-rw-r--r--c/src/lib/libbsp/hppa1.1/simhppa/startup/linkcmds35
3 files changed, 48 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/hppa1.1/simhppa/ChangeLog b/c/src/lib/libbsp/hppa1.1/simhppa/ChangeLog
index 0993819efd..af5288c25a 100644
--- a/c/src/lib/libbsp/hppa1.1/simhppa/ChangeLog
+++ b/c/src/lib/libbsp/hppa1.1/simhppa/ChangeLog
@@ -1,6 +1,11 @@
2002-12-19 Joel Sherrill <joel@OARcorp.com>
* start/start.S: Per PR329 now compiles with GNU tools.
+ * startup/linkcmds: New file. Now almost links.
+
+2002-12-19 Joel Sherrill <joel@OARcorp.com>
+
+ * start/start.S: Per PR329 now compiles with GNU tools.
2002-12-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/c/src/lib/libbsp/hppa1.1/simhppa/startup/Makefile.am b/c/src/lib/libbsp/hppa1.1/simhppa/startup/Makefile.am
index 92de8e83a4..bf797913e4 100644
--- a/c/src/lib/libbsp/hppa1.1/simhppa/startup/Makefile.am
+++ b/c/src/lib/libbsp/hppa1.1/simhppa/startup/Makefile.am
@@ -26,7 +26,14 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
-all-local: $(ARCH) $(OBJS) $(PGM)
+bsplib_DATA = linkcmds
+
+$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
+ $(INSTALL_DATA) $< $@
+
+TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
+
+all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
.PRECIOUS: $(PGM)
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 = . ;
+ }
+}