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 /arch/i386/linker.ld | |
parent | kernel: list: add a linked-list implementation (diff) | |
download | box-c41ec0787749a983552121f52ef54f21502f25d4.tar.gz box-c41ec0787749a983552121f52ef54f21502f25d4.tar.zst box-c41ec0787749a983552121f52ef54f21502f25d4.zip |
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>
Diffstat (limited to '')
-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 = .; } |