Initial 6.9 RC support

This commit is contained in:
Tk-Glitch
2024-03-25 21:07:03 +01:00
parent 3c0df95f88
commit 04ac71826d
19 changed files with 20299 additions and 1 deletions

10
linux-tkg-config/6.9/cleanup Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
for _f in /usr/lib/modules/*tkg*; do
if [[ ! -e ${_f}/vmlinuz ]]; then
rm -rf "$_f"
fi
done
# vim:set ft=sh sw=2 et: