You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Maschell b316d67479 Update Dockerfile 1 month ago
.github/workflows Change default branch to main 2 months ago
source Log the module version on each application start 2 months ago
.clang-format Format the code via clang-format 1 year ago
.gitignore first commit 3 years ago
Dockerfile Update Dockerfile 1 month ago
LICENSE Add LICENSE 9 months ago
Makefile Change the layout of the release .zip 1 year ago
README.md Change docker registry to ghcr.io 2 months ago

README.md

CI-Release

Usage

([ENVIRONMENT] is a placeholder for the actual environment name.)

  1. Copy the file KernelModule.wms into sd:/wiiu/environments/[ENVIRONMENT]/modules.
  2. Requires the WUMSLoader in sd:/wiiu/environments/[ENVIRONMENT]/modules/setup.

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

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

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

Format the code via docker

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