Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/hppa/stand/boot Ensure all data is captured under t...



details:   https://anonhg.NetBSD.org/src/rev/c791505ff7fc
branches:  trunk
changeset: 826358:c791505ff7fc
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Aug 29 19:14:04 2017 +0000

description:
Ensure all data is captured under the edata symbol for srt0.S to relocate
it correctly.

gcc 5.3 marks some data as .data.rel.local, .data.rel or .data.rel.ro

port-hppa/52484: lif images from -8 and HEAD not loadable/bootable over network

diffstat:

 sys/arch/hppa/stand/boot/ld.script |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r dbdb50ac7bf8 -r c791505ff7fc sys/arch/hppa/stand/boot/ld.script
--- a/sys/arch/hppa/stand/boot/ld.script        Tue Aug 29 18:33:15 2017 +0000
+++ b/sys/arch/hppa/stand/boot/ld.script        Tue Aug 29 19:14:04 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ld.script,v 1.1 2014/02/24 07:23:43 skrll Exp $        */
+/*     $NetBSD: ld.script,v 1.2 2017/08/29 19:14:04 skrll Exp $        */
 
 /*     $OpenBSD: ld.script,v 1.2 1999/04/20 20:02:37 mickey Exp $      */
 
@@ -23,7 +23,7 @@
        .data : {
                $global$ = .;
                *(.data)
-               *(.data1)
+               *(.data*)
                *(.sdata)
                *(.sdata2)
                *(.dynamic)



Home | Main Index | Thread Index | Old Index