diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-08-12 19:37:45 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-08-12 19:37:45 +0000 |
commit | 8b9478e165facd00de10d84cfde1ec83e0ecafc8 (patch) | |
tree | 9aaaa4aeac53d69889bd2e5776b91e9d9a0e4519 | |
parent | 3c3b49887aa322bff203238f837eea40c4151bc2 (diff) |
Upcoming radeondrm(4) support will grow the kernel. This growth causes the
linker to merge ithe .text and .data sections, even though there is no
reason why it should do this. Leave more space between these sections to
keep the linker from doing this.
-rw-r--r-- | sys/arch/sparc64/conf/Makefile.sparc64 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/conf/Makefile.sparc64 b/sys/arch/sparc64/conf/Makefile.sparc64 index e4d8584fbd7..aa6a1faeb21 100644 --- a/sys/arch/sparc64/conf/Makefile.sparc64 +++ b/sys/arch/sparc64/conf/Makefile.sparc64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sparc64,v 1.64 2013/06/23 20:33:51 miod Exp $ +# $OpenBSD: Makefile.sparc64,v 1.65 2013/08/12 19:37:44 kettenis Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -38,7 +38,7 @@ CMACHFLAGS+= -fno-stack-protector COPTS?= -O2 CFLAGS= ${DEBUG} ${CWARNFLAGS} ${CMACHFLAGS} ${COPTS} ${PIPE} AFLAGS= -D_LOCORE -x assembler-with-cpp ${CWARNFLAGS} ${CMACHFLAGS} -LINKFLAGS= -n -Ttext 01000000 -Tdata 01800000 -e start -N --warn-common \ +LINKFLAGS= -n -Ttext 01000000 -Tdata 01c00000 -e start -N --warn-common \ -nopie .if ${IDENT:M-DDDB_STRUCT} |