Initial 5.16 RC support

This commit is contained in:
Tk-Glitch
2021-11-16 16:06:31 +01:00
parent 9782efe0ff
commit 49ad3de167
14 changed files with 13107 additions and 2 deletions

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