Go to file
Maschell 95d2a9157f Update .gitignore 2021-12-29 17:33:27 +01:00
.github/workflows Update Dockerfile and CI, add docker instruction to README 2021-12-29 17:25:37 +01:00
source Only do logging when building with `make DEBUG=1` 2021-12-29 17:15:40 +01:00
.gitignore Update .gitignore 2021-12-29 17:33:27 +01:00
Dockerfile Update Dockerfile and CI, add docker instruction to README 2021-12-29 17:25:37 +01:00
Makefile Only do logging when building with `make DEBUG=1` 2021-12-29 17:15:40 +01:00
README.md Update Dockerfile and CI, add docker instruction to README 2021-12-29 17:25:37 +01:00

README.md

AutobootModule

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

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

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

Credits

  • GaryOderNichts
  • Maschell