From e19165963b1e60ca477cd9a41268378c3e27bdad Mon Sep 17 00:00:00 2001 From: Quinten Kock Date: Thu, 17 Dec 2020 18:54:48 +0100 Subject: [PATCH] fix incorrect KEEP in linker.ld --- kernel/make/i386/linker.ld | 2 +- kernel/make/x86_64/linker.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/make/i386/linker.ld b/kernel/make/i386/linker.ld index 500aa53..077b7f2 100644 --- a/kernel/make/i386/linker.ld +++ b/kernel/make/i386/linker.ld @@ -6,7 +6,7 @@ SECTIONS .stivale2hdr ALIGN(4K) : { - KEEP(*(.stivalehdr)) + KEEP(*(.stivale2hdr)) } .text ALIGN(4K) : diff --git a/kernel/make/x86_64/linker.ld b/kernel/make/x86_64/linker.ld index d00e0da..0823817 100644 --- a/kernel/make/x86_64/linker.ld +++ b/kernel/make/x86_64/linker.ld @@ -7,7 +7,7 @@ SECTIONS .stivale2hdr ALIGN(4K) : { - KEEP(*(.stivalehdr)) + KEEP(*(.stivale2hdr)) } .text ALIGN(4K) :