2deb19f1ab
This is an initial release with a couple compilation fixes for Project C schedulers (until Alfred fixes it on his end). Fsync support is missing at this point in time.
11 lines
141 B
Bash
Executable File
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:
|
|
|