mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-01 08:21:45 +00:00
2e9a89aa20
- Still compatible with old hekate. - Allows for hotfix control - Sept is now copied from actual running payload, negating the need to check update.bin - If a foreign payload is found in sept then it is renamed and hekate copies itself. After sept run, it renames it back and continues with boot.
24 lines
316 B
Text
24 lines
316 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
PROVIDE(__ipl_start = IPL_LOAD_ADDR);
|
|
. = __ipl_start;
|
|
.text : {
|
|
*(.text._start);
|
|
*(._boot_cfg);
|
|
*(._ipl_version);
|
|
*(.text*);
|
|
}
|
|
.data : {
|
|
*(.data*);
|
|
*(.rodata*);
|
|
}
|
|
. = ALIGN(0x10);
|
|
__ipl_end = .;
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(COMMON)
|
|
*(.bss*)
|
|
__bss_end = .;
|
|
}
|
|
}
|