Go to file
Maschell 37197bf5de Use ubuntu-22.04 on CI 2022-09-05 12:51:08 +02:00
.github/workflows Use ubuntu-22.04 on CI 2022-09-05 12:51:08 +02:00
source Format the code via clang-format 2022-07-20 18:55:26 +02:00
.clang-format Format the code via clang-format 2022-07-20 18:55:26 +02:00
.gitignore first commit 2021-12-25 20:22:54 +01:00
Dockerfile Support basic loading a .rpx from a bundle, change path of installer. OSFatal when the installer is missing on the sd card 2021-12-26 10:22:41 +01:00
LICENSE Add LICENSE 2022-09-05 12:51:08 +02:00
Makefile Support basic loading a .rpx from a bundle, change path of installer. OSFatal when the installer is missing on the sd card 2021-12-26 10:22:41 +01:00
README.md Format the code via clang-format 2022-07-20 18:55:26 +02:00

README.md

CI-Release

LaunchInstaller

Usage

Place the 90_launch_installer.rpx in the [ENVIRONMENT]/modules/setup folder and run the EnvironmentLoader. Requires MochaPayload as a setup module in [ENVIRONMENT]/modules/setup. Will automatically launch sd:/wiiu/apps/PayloadLoaderInstaller.wuhb

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 launchinstaller-builder

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

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

Format the code via docker

docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source -i

Credits

Maschell