diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2024-03-30 10:42:27 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2024-03-30 10:42:27 +0000 |
commit | b6c61d2ff35ffaef0be74ea134a19da11736931a (patch) | |
tree | ac04d4b925ef780d569464de5b7bf5c4d2b7dc31 /libexec | |
parent | 7072439f287d862ea0291c64885ce15a6c28a11f (diff) |
Prefer illop1 rather than nop for text padding in the ld.so linker script.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/m88k/ld.script | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/m88k/ld.script b/libexec/ld.so/m88k/ld.script index b5f405715ba..d128b12e713 100644 --- a/libexec/ld.so/m88k/ld.script +++ b/libexec/ld.so/m88k/ld.script @@ -29,9 +29,9 @@ SECTIONS . = ALIGN(0x1000); *(.boot.text) boot_text_end = .; - } :btext =0xf4005800 + } :btext =0xf400fc01 . = ALIGN(0x1000); - .text : { *(.text .text.*) } :text =0xf4005800 + .text : { *(.text .text.*) } :text =0xf400fc01 /* RELRO DATA */ . = DATA_SEGMENT_ALIGN (0x10000, 0x1000); |