hekate/bootloader/link.ld

26 lines
339 B
Plaintext
Raw Normal View History

2018-05-01 05:15:48 +00:00
ENTRY(_start)
SECTIONS {
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
2018-05-01 05:15:48 +00:00
. = __ipl_start;
.text : {
*(.text._start);
*(._boot_cfg);
*(._ipl_version);
*(.text._irq_setup);
2018-05-01 05:15:48 +00:00
*(.text*);
}
.data : {
*(.data*);
*(.rodata*);
}
. = ALIGN(0x10);
__ipl_end = .;
.bss : {
__bss_start = .;
*(COMMON)
*(.bss*)
__bss_end = .;
}
}