Initial support for Linux 6.0 RC1

This commit is contained in:
Tk-Glitch
2022-08-15 20:00:16 +02:00
parent d66319e0c3
commit 20d882b6f4
17 changed files with 26307 additions and 5 deletions

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