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.
![]() |
1 month ago | |
---|---|---|
.github/workflows | 2 months ago | |
source | 2 months ago | |
.clang-format | 1 year ago | |
.gitignore | 3 years ago | |
Dockerfile | 1 month ago | |
LICENSE | 9 months ago | |
Makefile | 1 year ago | |
README.md | 2 months ago |
README.md
Usage
([ENVIRONMENT]
is a placeholder for the actual environment name.)
- Copy the file
KernelModule.wms
intosd:/wiiu/environments/[ENVIRONMENT]/modules
. - 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