mirror of
https://github.com/wiiu-env/PayloadLoaderInstaller.git
synced 2024-11-23 10:19:21 +01:00
a283400d60
- Show a message if everything is already up to date and you try to install - Only install if not coldbooting into the target app. (Even though the root.rpx hash is checked we should be better safe/annoying than sorry) - If we want to patch the system.xml and everything but the .rpx hash matches, show a detailed warning. - this->systemXMLAlreadyPatched is always set if it's doesn't match the wii u menu - do NOT remove coldboot when removing aroma because you can't remove while coldbooting into aroma. show an error instead. |
||
---|---|---|
.github/workflows | ||
payload@31836812ef | ||
source | ||
.gitignore | ||
.gitmodules | ||
Dockerfile | ||
Makefile | ||
README.md |
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 aromainstaller-builder
# make
docker run -it --rm -v ${PWD}:/project aromainstaller-builder make
# make clean
docker run -it --rm -v ${PWD}:/project aromainstaller-builder make clean