Go to file
2020-10-19 00:19:04 +02:00
.github/workflows Add Github action workflows for CI 2020-08-12 17:51:42 +02:00
src Fix the maximum size check of the payload.rpx 2020-10-19 00:19:04 +02:00
.gitignore - Use the(de)-init functions from libwut to handle logging, sd access and memory. 2020-05-28 20:53:27 +02:00
Dockerfile [Docker] Use latest devkitPPC 2020-08-12 17:51:37 +02:00
LICENSE first commit 2020-04-27 13:32:37 +02:00
Makefile Adapt to devkitPPC r37 2020-06-12 13:09:00 +02:00
README.md Add dockerfile 2020-06-25 18:48:21 +02:00

CustomRPXLoader

This custom loader for .rpx files which can be used with any payload.elf loader. (For example PayloadFromRPX or JsTypeHax)

Usage

Place the payload.elf in the sd:/wiiu folder of your sd card and run a exploit which loads payload.elf, this will load the sd:/wiiu/payload.rpxinto memory and execute it. The maximum size of the payload.rpx depends on the size of this loader, but should > 7Mib.

Building

For building you just need wut installed, then use the make command.

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t customrpxloader-builder

# make 
docker run -it --rm -v ${PWD}:/project customrpxloader-builder make

# make clean
docker run -it --rm -v ${PWD}:/project customrpxloader-builder make clean

Credits

  • Maschell
  • orboditilt
  • Copy pasted the solution for using wut header in .elf files from RetroArch
  • Copy pasted resolving the ElfRelocations from decaf
  • Copy pasted SD mounting code + devoptabs from libutils