1
0
aedrix-kernel/link.ld
Aaron Lindsay 9d86813d8c initcalls: Add initial implementation
Create simple serial subsystem which makes use of initcalls, and convert
existing serial drivers to its use.
2012-10-04 00:28:44 -04:00

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 = .;
}