1
0
Fork 0
aedrix-kernel/arch/arm/kernel.ld

20 lines
340 B
Plaintext

ENTRY (start)
SECTIONS
{
. = 0x80100000;
.text : { *(.text*) *(.rodata*) }
.init : {
early_initcalls_start = .;
*(.earlyinitcalls*)
early_initcalls_end = .;
initcalls_start = .;
*(.driversubsysinitcalls*)
*(.deviceinitcalls*)
initcalls_end = .;
}
.data : { *(.data*) }
.bss : { *(.bss*) *(COMMON*) }
kernel_end = .;
}