mirror of
https://github.com/wiiu-env/EnvironmentLoader.git
synced 2025-12-10 19:15:55 +01:00
EnvironmentLoader-20211230-160635
Environment Loader
This is a payload that should be run with CustomRPXLoader.
Usage
Put the payload.rpx in the sd:/wiiu/ folder of your sd card and use the CustomRPXLoader to run this setup payload.
This payload checks for enviroments in the following directory: sd:/wiiu/environments/.
Example file structure for having a tiramisu and a installer environment on the sd card:
sd:\wiiu\environments\tiramisu\modules\setup\00_mocha.rpx
sd:\wiiu\environments\tiramisu\modules\setup\01_other_cool_payload.rpx
sd:\wiiu\environments\installer\modules\setup\00_mocha.rpx
sd:\wiiu\environments\installer\modules\setup\01_installer_launcher.rpx
When launching an given enviroment, all .rpx files in [ENVIRONMENT]/modules/setup will be run.
- Make sure not to call
exitin the setup payloads - The files will be run in the order of their ordered filenames.
Building
Make you to have wut installed and use the following command for build:
make install
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 environmentloader-builder
# make
docker run -it --rm -v ${PWD}:/project environmentloader-builder make
# make clean
docker run -it --rm -v ${PWD}:/project environmentloader-builder make clean
Credits
Languages
C++
86.9%
C
11.7%
Makefile
1.3%
Assembly
0.1%