Dir cleanup.

This commit is contained in:
Andrew Schott 2024-07-02 04:09:06 -05:00
parent 5596b95c24
commit 86775b77c6
2 changed files with 0 additions and 0 deletions

6
kmod/akmod-rebuild-all.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
echo "Building modules for all installed kernels."
for kernel in /usr/src/kernels/*; do
kernel=$(basename $kernel)
/usr/sbin/akmods --force --kernels $kernel
done