diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-12-28 18:20:52 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-12-28 18:20:52 +0000 |
commit | 61b165ffeabdb73d975f8798b2f5f8abc64fcb52 (patch) | |
tree | 2b7383bde07f60c62f9a9e47227d54ad5d81b656 /sys | |
parent | e8593200a99e4d1474fd369bb500b8993f393a78 (diff) |
Back out the previous commit; rodata gets merged with text by the linker.
Having a seperate rodata segment won't work anyway without significant pmap
changes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/conf/ld.script | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/sparc64/conf/ld.script b/sys/arch/sparc64/conf/ld.script index e14bfc75ee8..02e3eb65e07 100644 --- a/sys/arch/sparc64/conf/ld.script +++ b/sys/arch/sparc64/conf/ld.script @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.script,v 1.3 2013/12/28 17:57:51 deraadt Exp $ */ +/* $OpenBSD: ld.script,v 1.4 2013/12/28 18:20:51 kettenis Exp $ */ /* * Copyright (c) 2013 Mark Kettenis <kettenis@openbsd.org> @@ -23,7 +23,6 @@ ENTRY(start) PHDRS { text PT_LOAD; - rodata PT_LOAD; data PT_LOAD; openbsd_randomize 0x65a3dbe6; /* PT_OPENBSD_RANDOMIZE */ } |