Remove 4096-byte gap between .reginfo and .data, suggested by

Ian Taylor <ian@zembu.com>.
This commit is contained in:
thorpej 2001-06-01 03:55:30 +00:00
parent f4f6c1dd1c
commit 9f159a8918
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern.ldscript.be,v 1.2 2000/05/21 02:51:58 soren Exp $ */
/* $NetBSD: kern.ldscript.be,v 1.3 2001/06/01 03:55:30 thorpej Exp $ */
/* ldscript for NetBSD/mipseb kernels */
OUTPUT_FORMAT("elf32-bigmips", "elf32-bigmips",
@ -23,7 +23,7 @@ SECTIONS
PROVIDE (etext = .);
.rodata : { *(.rodata) }
.reginfo : { *(.reginfo) }
. = . + 0x1000;
/* . = . + 0x1000; */
.data :
{
_fdata = . ;

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern.ldscript.le,v 1.1 2000/05/21 02:50:13 soren Exp $ */
/* $NetBSD: kern.ldscript.le,v 1.2 2001/06/01 03:55:31 thorpej Exp $ */
/* ldscript for NetBSD/mipsel kernels */
OUTPUT_FORMAT("elf32-littlemips", "elf32-bigmips",
@ -23,7 +23,7 @@ SECTIONS
PROVIDE (etext = .);
.rodata : { *(.rodata) }
.reginfo : { *(.reginfo) }
. = . + 0x1000;
/* . = . + 0x1000; */
.data :
{
_fdata = . ;