decompressor: Add rodata PHDR and section to ld script

This commit is contained in:
mintsuki 2023-09-11 06:49:14 -05:00
parent 916aa370b2
commit 09c87feaee
1 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@ ENTRY(_start)
PHDRS
{
text PT_LOAD FLAGS((1 << 0) | (1 << 2)) ;
rodata PT_LOAD FLAGS((1 << 2)) ;
data PT_LOAD FLAGS((1 << 1) | (1 << 2)) ;
}
@ -17,9 +18,12 @@ SECTIONS
*(.text .text.*)
} :text
.rodata : {
*(.rodata .rodata.*)
} :rodata
.data : {
*(.data .data.*)
*(.rodata .rodata.*)
} :data
.bss : {