Go to file
Maschell 375c91313a Compile with latest WUMS version 2021-03-13 13:55:03 +01:00
.github/workflows [Workflow] Use Environment Files instead of ::set-env 2020-12-26 15:56:19 +01:00
source Use WUMS_MODULE_SKIP_WUT_INIT 2021-02-19 17:01:58 +01:00
.gitignore first commit 2020-05-28 21:52:29 +02:00
Dockerfile Compile with latest WUMS version 2021-03-13 13:55:03 +01: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