Denys Vlasenko
0c336570df
kmod.attr: cosmetic fixes: %{1} to %1, indentation fix
...
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
2023-05-04 12:55:15 +02:00
Denys Vlasenko
e9cc0440fd
kmod.attr: fix string.gsub patterns and return values
...
basename(): return one value, not two (principle of least confusion).
strip_compress_sfx(): ditto
strip_compress_sfx(): fix it, it had several problems:
(a) incorrect escaping of . (period) ... masked by incorrect use of backslash
(b) lua has no | "or" pattern
Use simpler gsub patterns / replacements, presumably faster (did not measure).
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
2023-05-04 12:51:15 +02:00
Denys Vlasenko
5df3d6d58b
kmod.attr: optimization: do not call strip_compress_sfx() twice
...
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
2023-05-04 12:43:01 +02:00
Denys Vlasenko
491a3411df
kmod.attr: fix "%g+.ko" pattern (erroneously matches "anythingko") to "%g+%.ko"
...
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
2023-05-04 12:37:36 +02:00
Eugene Syromiatnikov
1208dd48a6
Add zstd kmod compression support
...
* brp-kmod-restore-perms: Add chech for "$RPM_BUILD_ROOT/$path.zst".
* find-provides.ksyms: Add "\.zst" to the kernel module path matching
regular expression; process kernel module with zstd if its file name
ends with "zst".
* find-requires.ksyms: Likewise.
* firmware.prov: Add "\.zst" to the kernel module path matching
regular expression.
* kmodtool (%post, %preun): Likewise.
* modalias.prov: Likewise.
* modalias.attr (%__modalias_path): Add "ko\.zst" to the kernel module
path matching regular expression.
* provided_ksyms.attr (%__provided_ksyms_path): Likewise.
* required_ksyms.attr (%__required_ksyms_path): Likewise.
* kmod.attr (%__kmod_path): Add ".*\.ko\.zst" to the kernel module path
matching regular expression.
(strip_compress_sfx): Strip "\.zst" suffix, if present.
Resolves : #1942537
Signed-off-by: Eugene Syromiatnikov <esyr@redhat.com>
2021-11-18 16:44:20 +01:00
Eugene Syromiatnikov
956da198f9
kmod.attr: add compressed kmod support
...
* kmod.attr (%__kmod_path): Add ".*\.ko\.gz|.*\.ko\.bz2|.*\.ko\.xz"
to he module path matching regular expression endings.
(%__kmod_provides) <strip_compress_sfx>: New function.
(%__kmod_provides): Generate dependencies with module file name without
compressed extension (just ".ko") for compressed modules.
Resolves : #1942537
Signed-off-by: Eugene Syromiatnikov <esyr@redhat.com>
2021-11-18 16:38:10 +01:00
Michal Domonkos
101692ba47
Add kmod.attr from redhat-rpm-config
...
This file is currently shipped via the binary redhat-rpm-config package
itself, so we need an explicit Conflicts to avoid broken upgrades, as
well as actually remove the file from the next redhat-rpm-config build,
which we'll also do.
2021-06-03 17:50:56 +02:00