From 55822a5e82937857a4f69d39e6ed1b8db7a74a65 Mon Sep 17 00:00:00 2001 From: miod Date: Thu, 12 Jan 2023 07:25:29 +0000 Subject: [PATCH] Use proper sparc64 illtrap instruction as text sections filler, rather than the x86 one. --- libexec/ld.so/sparc64/ld.script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/ld.so/sparc64/ld.script b/libexec/ld.so/sparc64/ld.script index 2345976717d..2b663b37546 100644 --- a/libexec/ld.so/sparc64/ld.script +++ b/libexec/ld.so/sparc64/ld.script @@ -29,9 +29,9 @@ SECTIONS *(.boot.text) . = ALIGN(0x2000); boot_text_end = .; - } :btext =0xcccccccc + } :btext =0 . = ALIGN(0x100000); - .text : { *(.text .text.*) } :text =0xcccccccc + .text : { *(.text .text.*) } :text =0 /* RELRO DATA */ . = DATA_SEGMENT_ALIGN (0x100000, 0x2000); -- 2.20.1