diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-19 23:08:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-19 23:08:56 +0000 |
commit | 841af9ccbae1ba8b80cc7ab134999ab874e95080 (patch) | |
tree | dec5fb4326147d62536297bb10c39e28f5c2197d /sys/arch/hppa/conf | |
parent | d1dec4769069232cfaffcd8c2f82e54757c73983 (diff) |
track the gap in text
Diffstat (limited to 'sys/arch/hppa/conf')
-rw-r--r-- | sys/arch/hppa/conf/ld.script | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/hppa/conf/ld.script b/sys/arch/hppa/conf/ld.script index 7134843aae7..910abc38084 100644 --- a/sys/arch/hppa/conf/ld.script +++ b/sys/arch/hppa/conf/ld.script @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.script,v 1.9 2002/03/15 21:44:14 mickey Exp $ */ +/* $OpenBSD: ld.script,v 1.10 2002/03/19 23:08:55 mickey Exp $ */ OUTPUT_FORMAT("elf32-hppa") OUTPUT_ARCH(hppa) @@ -21,9 +21,10 @@ SECTIONS *(.PARISC.unwind) __unwind_end = .; . = ALIGN(4096); - } = 0 /* 0x08000240 nop filled, does not work */ + etext = ABSOLUTE(.); + } = 0 /* 0x08000240 nop filled, does not work cause of rodata */ . = 0x400000; - etext = ABSOLUTE(.); + etext1 = ABSOLUTE(.); .data : { |