mirror of
https://github.com/wiiu-env/CustomRPXLoader.git
synced 2024-11-12 21:45:06 +01:00
.github/workflows | ||
src | ||
.gitignore | ||
Dockerfile | ||
LICENSE | ||
Makefile | ||
README.md |
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.rpx
into 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