Initial support for 5.13 rc1

I have ported Project C v5.12-r1 over. We're missing fsync/futex2.
This commit is contained in:
Tk-Glitch
2021-05-10 18:19:12 +02:00
parent ce40b11e56
commit a35c2f295e
18 changed files with 25930 additions and 3 deletions

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