mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-05 02:27:39 +00:00
23 lines
314 B
Plaintext
23 lines
314 B
Plaintext
|
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 = .;
|
||
|
}
|