Sign inSign up

luxas/kernel-builder

By luxas

Updated about 6 years ago

Compile a linux kernel easily with this builder Docker image

Image
0

2.2K

luxas/kernel-builder repository overview

luxas/kernel-builder

Travis CI

Linux kernel build environment in Docker. Three images are available, with GCC 7 (default), GCC 5 and GCC 8. Travis CI builds the image on a weekly basis to keep it fresh.

https://hub.docker.com/r/luxas/kernel-builder

Examples

Checkout v4.19 stable branch of the kernel and compile it along with all modules

docker run -it -v $(pwd)/.config:/tmp/.config luxas/kernel-builder:gcc-7 /bin/bash -c "\
	git fetch --tags && git checkout v4.19 && \
	cp /tmp/.config .config && \
	make oldconfig && \
	make -j16 && make modules_install"

License

MIT

Tag summary

Content type

Image

Digest

Size

1 GB

Last updated

about 6 years ago

docker pull luxas/kernel-builder