Skip to content

Commit

Permalink
Merge pull request #362 from rickgaiser/for-ps2homebrew
Browse files Browse the repository at this point in the history
Fix elf loading / app support
  • Loading branch information
uyjulian authored Jan 11, 2021
2 parents a5f7b6f + a569fd8 commit 8a89277
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion elfldr/linkfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@

ENTRY(_start);

PHDRS {
text PT_LOAD;
}


SECTIONS {
.text 0x00082000: {
_ftext = . ;
Expand All @@ -22,7 +27,7 @@ SECTIONS {
KEEP(*(.init))
KEEP(*(.fini))
QUAD(0)
}
} :text

PROVIDE(_etext = .);
PROVIDE(etext = .);
Expand Down

0 comments on commit 8a89277

Please sign in to comment.