Files
ps5-linux-loader/shellcode_hv/linker.ld
Andy Nguyen 50b28fb8c1 More cleanup.
Rename shellcode_hypervisor to shellcode_hv and kernel_code to boot_linux.
2026-05-12 23:32:23 +02:00

19 lines
303 B
Plaintext

/* linker.ld */
ENTRY(main)
SECTIONS
{
. = 0x1000; /* 0x1000 to avoid warnings from linker */
/* Place our custom header first */
.shell_code :
{
*(.entry_point)
*(.text)
*(.text.*)
*(.data*)
*(.rodata*)
*(.bss)
*(.bss.*)
}
}