PayloadLoaderInstaller/README.md

20 lines
798 B
Markdown
Raw Normal View History

2021-12-26 15:20:43 +01:00
# PayloadLoader Installer
A (hopefully) userfriendly and safe installer to inject a ["payload.elf-loader"](https://github.com/wiiu-env/PayloadFromRPX) into the Health and Safety application via [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html).
To be able to do a coldboot setup you need launch this installer via the Health & Safety injection itself.
2020-12-11 15:56:00 +01:00
## 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)
2021-12-26 15:20:43 +01:00
docker build . -t payloadloaderinstaller-builder
# make
2021-12-26 15:20:43 +01:00
docker run -it --rm -v ${PWD}:/project payloadloaderinstaller-builder make
# make clean
2021-12-26 15:20:43 +01:00
docker run -it --rm -v ${PWD}:/project payloadloaderinstaller-builder make clean
```