Add symbols to linker script for page table generation
This commit is contained in:
parent
78fb7f061f
commit
ee7f3c76f7
|
@ -14,10 +14,13 @@ SECTIONS
|
||||||
bootldr = .; . += 4096;
|
bootldr = .; . += 4096;
|
||||||
environment = .; . += 4096;
|
environment = .; . += 4096;
|
||||||
|
|
||||||
|
|
||||||
.text : {
|
.text : {
|
||||||
|
|
||||||
|
_kernel_text_start = .;
|
||||||
KEEP(*(.text.boot)) *(.text .text.*)
|
KEEP(*(.text.boot)) *(.text .text.*)
|
||||||
|
_kernel_rodata_start = .;
|
||||||
*(.rodata .rodata.*)
|
*(.rodata .rodata.*)
|
||||||
|
_kernel_data_start = .;
|
||||||
*(.data .data.*)
|
*(.data .data.*)
|
||||||
} :boot
|
} :boot
|
||||||
.bss (NOLOAD) : {
|
.bss (NOLOAD) : {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user