Initail commit

This commit is contained in:
tuna2134
2026-06-29 22:44:27 +09:00
commit 428ce85179
8 changed files with 1391 additions and 0 deletions

13
build.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
set -eu
KVER="$(uname -r)"
KDIR="/lib/modules/$KVER/build"
if [ ! -d "$KDIR" ]; then
echo "error: kernel headers for running kernel $KVER were not found at $KDIR" >&2
echo "install matching Arch headers or reboot into the kernel that matches installed headers" >&2
exit 1
fi
make KDIR="$KDIR"