Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hp700/conf the SIZEOF_HEADERS thing doesn't work wi...



details:   https://anonhg.NetBSD.org/src/rev/29312916846f
branches:  trunk
changeset: 539860:29312916846f
user:      chs <chs%NetBSD.org@localhost>
date:      Thu Nov 28 05:56:51 2002 +0000

description:
the SIZEOF_HEADERS thing doesn't work with the current toolchain,
just use 1 page for now.

diffstat:

 sys/arch/hp700/conf/ld.script |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7ff825af3f67 -r 29312916846f sys/arch/hp700/conf/ld.script
--- a/sys/arch/hp700/conf/ld.script     Thu Nov 28 05:53:23 2002 +0000
+++ b/sys/arch/hp700/conf/ld.script     Thu Nov 28 05:56:51 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ld.script,v 1.2 2002/08/05 20:58:36 fredette Exp $     */
+/*     $NetBSD: ld.script,v 1.3 2002/11/28 05:56:51 chs Exp $  */
 
 /*     $OpenBSD: ld.script,v 1.7 1999/12/17 07:02:38 mickey Exp $      */
 
@@ -8,7 +8,7 @@
 SECTIONS
 {
        /* Read-only sections, merged into text segment: */
-       . = + SIZEOF_HEADERS;
+       . = + 0x1000; /* XXX should be SIZEOF_HEADERS */
        .text :
        {
                kernel_text = . ;



Home | Main Index | Thread Index | Old Index