From 8b9478e165facd00de10d84cfde1ec83e0ecafc8 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Mon, 12 Aug 2013 19:37:45 +0000 Subject: 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. --- sys/arch/sparc64/conf/Makefile.sparc64 | 4 ++-- 1 file 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} -- cgit v1.2.3