diff options
author | 2008-06-25 22:05:21 +0000 | |
---|---|---|
committer | 2008-06-25 22:05:21 +0000 | |
commit | 25227e4336247e0e312826b3db258d25c3028ec3 (patch) | |
tree | 4f3d3cbe213855369734d148d239ff506879473d | |
parent | in resume mode, pass -c to mget when {dir,file}hasglob, so that i'm (diff) | |
download | wireguard-openbsd-25227e4336247e0e312826b3db258d25c3028ec3.tar.xz wireguard-openbsd-25227e4336247e0e312826b3db258d25c3028ec3.zip |
Move .rodata 512KB further, since kernels will soon reach the address .rodata
is currently linked at. This should eventually be replaced with a proper
alignment construct in the ld script, but it's too hot and too late to
do this correctly and I need a kernel that links (containing stuff to
reach a cvs tree near you reasonably soon).
-rw-r--r-- | sys/arch/hppa/conf/ld.script | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/conf/ld.script b/sys/arch/hppa/conf/ld.script index 446c922f566..ddeb3ae84f8 100644 --- a/sys/arch/hppa/conf/ld.script +++ b/sys/arch/hppa/conf/ld.script @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.script,v 1.15 2005/06/21 15:56:54 mickey Exp $ */ +/* $OpenBSD: ld.script,v 1.16 2008/06/25 22:05:21 miod Exp $ */ /* * Copyright (c) 2003 Michael Shalayeff @@ -46,7 +46,7 @@ SECTIONS etext = ABSOLUTE(.); } = 0x08000240 /* nop filled */ - . = 0x400000; + . = 0x480000; .rodata : { |