mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 15:53:25 +00:00
The test is currently not hooked up, but it pulls the latest 4.9.x kernel image, builds a simple kernel module against it and then creates a test package containing the kernel module and a shell script. The shell script prints out the 'modinfo' and then tries to 'insmod' the module. It checks the output of 'dmesg' of the load succeeded. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
22 lines
671 B
Docker
22 lines
671 B
Docker
# This Dockerfile extracts the kernel headers from the kernel image
|
|
# and then compiles a simple hello world kernel module against them.
|
|
# In the last stage, it creates a package, which can be used for
|
|
# testing.
|
|
|
|
FROM linuxkit/kernel:4.9.x AS ksrc
|
|
|
|
# Extract headers and compile module
|
|
FROM linuxkit/kernel-compile:1b396c221af673757703258159ddc8539843b02b@sha256:6b32d205bfc6407568324337b707d195d027328dbfec554428ea93e7b0a8299b AS build
|
|
COPY --from=ksrc /kernel-dev.tar /
|
|
RUN tar xf kernel-dev.tar
|
|
|
|
WORKDIR /kmod
|
|
COPY ./src/* ./
|
|
RUN make all
|
|
|
|
# Package
|
|
FROM alpine:3.5
|
|
COPY --from=build /kmod/hello_world.ko /
|
|
COPY check.sh /check.sh
|
|
ENTRYPOINT ["/bin/sh", "/check.sh"]
|