feat: DTB now populates VMBootMemoryMap structure.

This commit is contained in:
karina
2026-04-26 13:32:44 +04:00
parent a05b51fca3
commit 785a61b451
8 changed files with 109 additions and 14 deletions
+8
View File
@@ -7,14 +7,22 @@ PHDRS
SECTIONS
{
. = 0x40100000;
_kernelStart = .;
.text : {
*(.text.boot)
*(.text*)
} :text
. = ALIGN(8);
.rodata : { *(.rodata*) } :text
. = ALIGN(4096);
.data : { *(.data*) } :data
. = ALIGN(8);
.bss : { *(.bss*) *(COMMON) } :data
. = ALIGN(4096);
_kernelEnd = .;
}