feat: DTB now populates VMBootMemoryMap structure.
This commit is contained in:
@@ -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 = .;
|
||||
}
|
||||
Reference in New Issue
Block a user