Use 1024 instead of SIZEOF_HEADERS for now.

This commit is contained in:
martin 2004-05-23 01:15:05 +00:00
parent 349ad018c7
commit aacd0f5586
2 changed files with 4 additions and 4 deletions

View File

@ -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 @@ SEARCH_DIR(/usr/lib);
SECTIONS
{
/* Read-only sections, merged into text segment: */
. = 0x100000 + SIZEOF_HEADERS;
. = 0x100000 + 1024 /*SIZEOF_HEADERS*/;
.interp : { *(.interp) }
.hash : { *(.hash) }
.dynsym : { *(.dynsym) }

View File

@ -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 @@ SEARCH_DIR(/usr/lib);
SECTIONS
{
/* Read-only sections, merged into text segment: */
. = 0x10000 + SIZEOF_HEADERS;
. = 0x10000 + 1024 /*SIZEOF_HEADERS*/;
.interp : { *(.interp) }
.hash : { *(.hash) }
.dynsym : { *(.dynsym) }