mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-18 00:01:15 +00:00
32 lines
711 B
Bash
32 lines
711 B
Bash
#!/bin/sh
|
|
# SUMMARY: Test build and insertion of kernel modules
|
|
# LABELS:
|
|
# REPEAT:
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
NAME=kmod
|
|
IMAGE_NAME=kmod-test
|
|
|
|
clean_up() {
|
|
docker rmi ${IMAGE_NAME} || true
|
|
rm -rf ${NAME}-*
|
|
}
|
|
trap clean_up EXIT
|
|
|
|
# Make sure we have the latest kernel image
|
|
docker pull linuxkit/kernel:5.10.104-9005a97e2b2cba68b4374092167b079a2874f66b
|
|
# Build a package
|
|
docker build -t ${IMAGE_NAME} .
|
|
|
|
# Build and run a LinuxKit image with kernel module (and test script)
|
|
linuxkit build --docker --format kernel+initrd --name "${NAME}" test.yml
|
|
RESULT="$(linuxkitrun ${NAME})"
|
|
echo "${RESULT}" | grep -q "Hello LinuxKit"
|
|
|
|
exit 0
|