lock kernel pages

This commit is contained in:
2026-01-28 18:31:58 +11:00
parent 012489a658
commit 3b8bd6f0da
6 changed files with 13 additions and 20 deletions

View File

@@ -3,6 +3,7 @@ ENTRY(_start)
SECTIONS
{
_KernelStart = .;
.text : ALIGN(0x1000)
{
*(.text)
@@ -20,4 +21,5 @@ SECTIONS
*(COMMON)
*(.bss)
}
_KernelEnd = .;
}