mirror of
https://github.com/CTCaer/hekate
synced 2024-11-05 11:26:35 +00:00
22 lines
314 B
Text
22 lines
314 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = LDR_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
*(._boot_cfg);
|
|
*(._ipl_version);
|
|
*(._octopus);
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
*(._payload_00);
|
|
*(._payload_01);
|
|
}
|
|
__ldr_end = .;
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
}
|