1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

Kernel: Rename .boot_bss to .super_pages to better reflect what it is

This also removes the section attribute for kernel_base which had no
effect because the section wasn't included in the linker script.
This commit is contained in:
Gunnar Beutner 2021-07-19 18:52:01 +02:00 committed by Andreas Kling
parent be795d5812
commit 5188185374
4 changed files with 8 additions and 8 deletions

View file

@ -12,7 +12,7 @@
extern "C" PhysicalAddress start_of_prekernel_image;
extern "C" PhysicalAddress end_of_prekernel_image;
extern "C" __attribute__((section(".boot_bss"))) FlatPtr kernel_base;
extern "C" FlatPtr kernel_base;
#if ARCH(X86_64)
extern "C" u32 gdt64ptr;
extern "C" u16 code64_sel;