Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/sparc64/conf Use 1024 instead of SIZEOF_HEADERS for...
details: https://anonhg.NetBSD.org/src/rev/0d3132d717f1
branches: trunk
changeset: 566878:0d3132d717f1
user: martin <martin%NetBSD.org@localhost>
date: Sun May 23 01:15:05 2004 +0000
description:
Use 1024 instead of SIZEOF_HEADERS for now.
diffstat:
sys/arch/sparc64/conf/kern.ldscript | 4 ++--
sys/arch/sparc64/conf/kern32.ldscript | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 58e52da45821 -r 0d3132d717f1 sys/arch/sparc64/conf/kern.ldscript
--- a/sys/arch/sparc64/conf/kern.ldscript Sun May 23 00:37:27 2004 +0000
+++ b/sys/arch/sparc64/conf/kern.ldscript Sun May 23 01:15:05 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern.ldscript,v 1.4 2002/05/16 01:01:41 thorpej Exp $ */
+/* $NetBSD: kern.ldscript,v 1.5 2004/05/23 01:15:05 martin Exp $ */
/*
* Kernel linker script for NetBSD/sparc64. This script is based on
@@ -14,7 +14,7 @@
SECTIONS
{
/* Read-only sections, merged into text segment: */
- . = 0x100000 + SIZEOF_HEADERS;
+ . = 0x100000 + 1024 /*SIZEOF_HEADERS*/;
.interp : { *(.interp) }
.hash : { *(.hash) }
.dynsym : { *(.dynsym) }
diff -r 58e52da45821 -r 0d3132d717f1 sys/arch/sparc64/conf/kern32.ldscript
--- a/sys/arch/sparc64/conf/kern32.ldscript Sun May 23 00:37:27 2004 +0000
+++ b/sys/arch/sparc64/conf/kern32.ldscript Sun May 23 01:15:05 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern32.ldscript,v 1.3 2002/05/16 01:01:41 thorpej Exp $ */
+/* $NetBSD: kern32.ldscript,v 1.4 2004/05/23 01:15:05 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