diff options
author | 2002-02-02 21:28:07 +0000 | |
---|---|---|
committer | 2002-02-02 21:28:07 +0000 | |
commit | e45db4497e327039cf1a755b64406dda47285f07 (patch) | |
tree | cd5cbbd8ede5857c88df80dab557b983ab7f2b2e | |
parent | missing NULL (diff) | |
download | wireguard-openbsd-e45db4497e327039cf1a755b64406dda47285f07.tar.xz wireguard-openbsd-e45db4497e327039cf1a755b64406dda47285f07.zip |
update for newer binutils
-rw-r--r-- | sys/arch/hppa/stand/boot/ld.script | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/hppa/stand/boot/ld.script b/sys/arch/hppa/stand/boot/ld.script index 099a6d338cf..f2b288129f3 100644 --- a/sys/arch/hppa/stand/boot/ld.script +++ b/sys/arch/hppa/stand/boot/ld.script @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.script,v 1.2 1999/04/20 20:02:37 mickey Exp $ */ +/* $OpenBSD: ld.script,v 1.3 2002/02/02 21:28:07 mickey Exp $ */ OUTPUT_FORMAT("elf32-hppa") OUTPUT_ARCH(hppa) @@ -10,11 +10,12 @@ SECTIONS { . = + SIZEOF_HEADERS; .text : { *(.text) + *(.text.*) *(.rodata) *(.rodata1) *($CODE$) - etext = ABSOLUTE(.); - } = 0x08000240 /* nop */ + etext = .; + } = 0x08000240 /* Read-write sections, merged into data segment: */ .data : { |