Initial commit

This commit is contained in:
Al Azif
2025-05-12 14:30:43 -07:00
commit b9f5957555
28 changed files with 6529 additions and 0 deletions

8
src/kpatch/script.ld Normal file
View File

@@ -0,0 +1,8 @@
SECTIONS
{
.text : { *(.text.start) *(.text) }
.rodata : { *(.rodata) }
.data : { *(.data) }
.bss : { *(.bss) }
/DISCARD/ : { *(.comment* .note*) }
}