From 231fdba93d5925b8fb9d564b62757511dc555852 Mon Sep 17 00:00:00 2001 From: Christian Werner Date: Fri, 19 Jun 2026 03:40:43 +0200 Subject: [PATCH] feat(kernel): Add working directory log to build script Log the current working directory in `build-in-docker.sh` to improve the debugging process during kernel module compilation. This update helps track the build context path passed to the Docker container. --- kernel/build-in-docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/build-in-docker.sh b/kernel/build-in-docker.sh index ccef086..a905d3d 100755 --- a/kernel/build-in-docker.sh +++ b/kernel/build-in-docker.sh @@ -40,6 +40,7 @@ docker build --platform linux/arm64 \ # 3. Compile; mount this dir so the .ko lands on the host, owned by the caller. echo "==> compiling module" +echo "working directory: $PWD" docker run --rm --platform linux/arm64 \ -u "$(id -u):$(id -g)" -e HOME=/tmp \ -v "$PWD:/build" "$IMAGE" "$@"