Back out the previous commit; rodata gets merged with text by the linker.
authorkettenis <kettenis@openbsd.org>
Sat, 28 Dec 2013 18:20:51 +0000 (18:20 +0000)
committerkettenis <kettenis@openbsd.org>
Sat, 28 Dec 2013 18:20:51 +0000 (18:20 +0000)
Having a seperate rodata segment won't work anyway without significant pmap
changes.

sys/arch/sparc64/conf/ld.script

index e14bfc7..02e3eb6 100644 (file)
@@ -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 */
 }