Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sparc/conf Instead of SIZEOF_HEADERS (which ld gets...



details:   https://anonhg.NetBSD.org/src/rev/b7f33e519d4a
branches:  trunk
changeset: 566893:b7f33e519d4a
user:      martin <martin%NetBSD.org@localhost>
date:      Sun May 23 16:10:25 2004 +0000

description:
Instead of SIZEOF_HEADERS (which ld gets wrong) use 1024 for now.

diffstat:

 sys/arch/sparc/conf/kern.ldscript |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r c1eb91c29584 -r b7f33e519d4a sys/arch/sparc/conf/kern.ldscript
--- a/sys/arch/sparc/conf/kern.ldscript Sun May 23 14:05:39 2004 +0000
+++ b/sys/arch/sparc/conf/kern.ldscript Sun May 23 16:10:25 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern.ldscript,v 1.2 2001/02/12 21:56:54 pk Exp $       */
+/*     $NetBSD: kern.ldscript,v 1.3 2004/05/23 16:10:25 martin Exp $   */
 
 /*
  * Kernel linker script for NetBSD/sparc.  This script is based on
@@ -15,7 +15,7 @@
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */
-  . = 0x10000 + SIZEOF_HEADERS;
+  . = 0x10000 + 1024 /*SIZEOF_HEADERS*/;
   .interp     : { *(.interp)   }
   .hash          : { *(.hash)          }
   .dynsym        : { *(.dynsym)                }



Home | Main Index | Thread Index | Old Index