Initial support for 5.14 RC

This commit is contained in:
Tk-Glitch
2021-07-14 18:21:07 +02:00
parent e1c1bede14
commit 46f2642294
16 changed files with 16044 additions and 2 deletions

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