From f83727a0c8913d19415c2ad482c70ee7373f6f3f Mon Sep 17 00:00:00 2001 From: Fabian Imhof Date: Sun, 4 May 2025 11:26:29 +0000 Subject: add user_text linker section and temporarily add elf_sections.txt --- arch/x86_64/scripts/kernel.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/x86_64/scripts') diff --git a/arch/x86_64/scripts/kernel.ld b/arch/x86_64/scripts/kernel.ld index 806adb5..239d026 100644 --- a/arch/x86_64/scripts/kernel.ld +++ b/arch/x86_64/scripts/kernel.ld @@ -90,9 +90,9 @@ SECTIONS *(.text*) } - .interrupt_text ALIGN(4K) : AT(ADDR (.interrupt_text)) + .user_text ALIGN(4K) : AT(ADDR (.user_text)) { - *(.interrupt_text) + *(.user_text) } .rodata ALIGN(4K) : AT (ADDR (.rodata)) -- cgit v1.2.3