CustomRPXLoader/src/link.ld
2022-01-21 18:50:57 +01:00

26 lines
448 B
Plaintext

OUTPUT(payload.elf);
ENTRY(_start);
SECTIONS {
. = 0x00808000;
.text : {
*(.kernel_code*);
*(.text*);
/* Tell linker to not garbage collect this section as it is not referenced anywhere */
KEEP(*(.kernel_code*));
}
.data : {
*(.rodata*);
*(.data*);
*(.sdata*);
*(.bss*);
*(.sbss*);
}
__CODE_END = .;
/DISCARD/ : {
*(*);
}
}
ASSERT((SIZEOF(.text) + SIZEOF(.data)) < (0x00900000 - 0x00808000), "elf is too big");