diff options
author | Danny Holman <dholman@gymli.org> | 2023-11-26 18:53:41 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2023-11-26 18:53:41 -0600 |
commit | c41ec0787749a983552121f52ef54f21502f25d4 (patch) | |
tree | 2790a236805bcec836cc0a415f8d0f2f22530df1 | |
parent | 9c3e0a9de7c57bf3435f07e6f2decb2f0e317776 (diff) |
arch: i386: linker.ld: add references to the bitmap
Add references to the PMM bitmap to the linker script.
Signed-off-by: Danny Holman <dholman@gymli.org>
-rw-r--r-- | arch/i386/linker.ld | 5 |
1 files changed, 5 insertions, 0 deletions
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 = .; } |