From c41ec0787749a983552121f52ef54f21502f25d4 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 26 Nov 2023 18:53:41 -0600 Subject: arch: i386: linker.ld: add references to the bitmap Add references to the PMM bitmap to the linker script. Signed-off-by: Danny Holman --- arch/i386/linker.ld | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'arch') diff --git a/arch/i386/linker.ld b/arch/i386/linker.ld index 5d06e79..61799c7 100644 --- a/arch/i386/linker.ld +++ b/arch/i386/linker.ld @@ -25,5 +25,10 @@ SECTIONS { *(.bss) *(.bootstrap_stack) } + + _bitmap_start = .; + . += 128K; + _bitmap_end = .; + _kernel_end = .; } -- cgit v1.2.3