fix(kernel-modules-extra): handle zstd module extension

The regular expression here is trying to handle various kernel
module compression schemas and was missing the zst extension
which indicates use of zstd.
master
Dirk Müller 2021-12-23 10:23:59 +01:00 committed by Jóhann B. Guðmundsson
parent 0e80ff72e0
commit b3d2dcb71e
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ installkernel() {

((${#pathlist[@]} > 0)) || return 0

printf "^%s\.ko(\.gz|\.bz2|\.xz)?:\n" "${pathlist[@]}" \
printf "^%s\.ko(\.gz|\.bz2|\.xz|\.zst)?:\n" "${pathlist[@]}" \
| (LANG=C grep -E -o -f - -- "$depmod_modules_dep" || exit 0) \
| tr -d ':' \
| (