Go to file
Maschell d0fc24b77c Rename WUMS_MODULE_INIT_BEFORE_ENTRYPOINT => WUMS_MODULE_INIT_BEFORE_RELOCATION_DONE_HOOK, add WUMS_MODULE_SKIP_ENTRYPOINT 2020-12-26 15:52:59 +01:00
.github/workflows Add Github action workflows for CI 2020-08-12 19:55:56 +02:00
source Rename WUMS_MODULE_INIT_BEFORE_ENTRYPOINT => WUMS_MODULE_INIT_BEFORE_RELOCATION_DONE_HOOK, add WUMS_MODULE_SKIP_ENTRYPOINT 2020-12-26 15:52:59 +01:00
.gitignore first commit 2020-05-28 21:52:29 +02:00
Dockerfile [Docker] Use latest devkitPPC and WUMS 2020-08-12 19:54:08 +02:00
Makefile Adopt to linking changes of WUMS 2020-06-10 13:10:59 +02:00
README.md Add Dockerfile 2020-07-05 13:18:50 +02:00

README.md

Run via SetupPayload. Requires wut, wums

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