Initial 6.7 RC support

This commit is contained in:
Tk-Glitch
2023-11-14 11:14:49 +01:00
parent f92d4ed9ca
commit bfaaacb505
17 changed files with 19325 additions and 8 deletions

10
linux-tkg-config/6.7/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: