Add support for 5.11 RC

(targets 5.11 rc2 by default as it's the current latest)
This commit is contained in:
Tk-Glitch
2021-01-05 15:37:57 +01:00
parent 09f464eb9e
commit ac8d1c9d39
13 changed files with 13484 additions and 2 deletions

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