diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-06-25 22:05:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-06-25 22:05:22 +0000 |
commit | 401dad7b7ed83f5ed55609b74351bd296b4908c0 (patch) | |
tree | 4ac8ad8da5ffb67c87ecb32a724d07f5352d6547 | |
parent | a85feb9cc10f0895358f0a480a20d3283a3ef3f2 (diff) |
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 : { |