diff options
author | 2013-12-28 18:20:51 +0000 | |
---|---|---|
committer | 2013-12-28 18:20:51 +0000 | |
commit | a002a24b9f13f9d347ca751107babf38a5b1530b (patch) | |
tree | 8debf78f32d9de2dae70a8b0fa1883b0a5882274 | |
parent | create rodata PHDR; ok kettenis (diff) | |
download | wireguard-openbsd-a002a24b9f13f9d347ca751107babf38a5b1530b.tar.xz wireguard-openbsd-a002a24b9f13f9d347ca751107babf38a5b1530b.zip |
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.
-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 */ } |