linux-tkg/linux-tkg-config/5.11/cleanup
Tk-Glitch ac8d1c9d39 Add support for 5.11 RC
(targets 5.11 rc2 by default as it's the current latest)
2021-01-05 15:37:57 +01:00

11 lines
141 B
Bash
Executable File

#!/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: