Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/sys/arch/hppa/stand/cdboot Pull up following revision(s) ...
details: https://anonhg.NetBSD.org/src/rev/2a454baf9e11
branches: netbsd-8
changeset: 851001:2a454baf9e11
user: martin <martin%NetBSD.org@localhost>
date: Fri Sep 01 09:52:40 2017 +0000
description:
Pull up following revision(s) (requested by skrll in ticket #260):
sys/arch/hppa/stand/cdboot/ld.script: revision 1.2
Use the same linker script as sys/arch/hppa/stand/boot and fix the gcc
5.3 problem here as well.
diffstat:
sys/arch/hppa/stand/cdboot/ld.script | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (35 lines):
diff -r 1e20556440f7 -r 2a454baf9e11 sys/arch/hppa/stand/cdboot/ld.script
--- a/sys/arch/hppa/stand/cdboot/ld.script Fri Sep 01 09:51:08 2017 +0000
+++ b/sys/arch/hppa/stand/cdboot/ld.script Fri Sep 01 09:52:40 2017 +0000
@@ -1,6 +1,6 @@
-/* $NetBSD: ld.script,v 1.1 2014/02/24 07:23:43 skrll Exp $ */
+/* $NetBSD: ld.script,v 1.1.28.1 2017/09/01 09:52:40 martin Exp $ */
-/* $OpenBSD: ld.script,v 1.1 2003/03/28 22:42:26 mickey Exp $ */
+/* $OpenBSD: ld.script,v 1.2 1999/04/20 20:02:37 mickey Exp $ */
OUTPUT_FORMAT("elf32-hppa")
OUTPUT_ARCH(hppa)
@@ -12,18 +12,18 @@
. = + SIZEOF_HEADERS;
.text : {
*(.text)
- *(.text.*)
+ *(.text.1)
*(.rodata)
*(.rodata1)
*($CODE$)
- etext = .;
- } = 0x08000240
+ etext = ABSOLUTE(.);
+ } = 0x08000240 /* nop */
/* Read-write sections, merged into data segment: */
.data : {
$global$ = .;
*(.data)
- *(.data1)
+ *(.data*)
*(.sdata)
*(.sdata2)
*(.dynamic)
Home |
Main Index |
Thread Index |
Old Index