This commit is contained in:
Tk-Glitch
2022-01-23 21:40:09 +01:00
parent ae9349fe5e
commit c7ab89eaa8
21 changed files with 27969 additions and 3 deletions

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