mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
b4eeddd7e1
... dependencies are now properly handled (e.g. header changes, etc.)
55 lines
1,021 B
Text
55 lines
1,021 B
Text
OUTPUT_FORMAT("elf64-littleaarch64")
|
|
OUTPUT_ARCH(aarch64)
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x800D0000;
|
|
|
|
. = ALIGN(4);
|
|
.text : {
|
|
PROVIDE(lds_thermo_start = .);
|
|
start.o (.text*)
|
|
*(.text*)
|
|
}
|
|
|
|
. = ALIGN(8);
|
|
.rodata : {
|
|
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
|
|
}
|
|
|
|
. = ALIGN(8);
|
|
.data : {
|
|
*(.data*)
|
|
}
|
|
|
|
/* Uninitialised data */
|
|
. = ALIGN(8);
|
|
PROVIDE(lds_bss_start = .);
|
|
.bss (NOLOAD) : {
|
|
*(.bss*) . = ALIGN(8);
|
|
}
|
|
PROVIDE(lds_bss_end = .);
|
|
|
|
/* EL2 stack */
|
|
. = ALIGN(16);
|
|
. += 0x10000; /* 64 KiB stack */
|
|
el2_stack_end = .;
|
|
|
|
/* Page align the end of binary */
|
|
. = ALIGN(512);
|
|
PROVIDE(lds_el2_thermo_end = .);
|
|
|
|
/* EL1 stack */
|
|
. = ALIGN(16);
|
|
. += 0x10000; /* 64 KiB stack */
|
|
el1_stack_end = .;
|
|
|
|
lds_thermo_end = .;
|
|
|
|
/DISCARD/ : { *(.dynstr*) }
|
|
/DISCARD/ : { *(.dynamic*) }
|
|
/DISCARD/ : { *(.plt*) }
|
|
/DISCARD/ : { *(.interp*) }
|
|
/DISCARD/ : { *(.gnu*) }
|
|
}
|