Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Tue, 06 Jul 2021 00:25:20
Message-Id: 1625528451.228102522e6139470fe86df52a29bd68e583f935.whissi@gentoo
1 commit: 228102522e6139470fe86df52a29bd68e583f935
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 5 22:13:13 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 5 23:40:51 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=22810252
7
8 gen_moddeps.sh: modules_kext(): Add ZSTD support for kernel modules
9
10 Bug: https://bugs.gentoo.org/800506
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 gen_moddeps.sh | 1 +
14 1 file changed, 1 insertion(+)
15
16 diff --git a/gen_moddeps.sh b/gen_moddeps.sh
17 index 0842249..8c44039 100755
18 --- a/gen_moddeps.sh
19 +++ b/gen_moddeps.sh
20 @@ -61,6 +61,7 @@ modules_kext() {
21 module_compression_algorithms[NONE]='.ko'
22 module_compression_algorithms[GZIP]='.ko.gz'
23 module_compression_algorithms[XZ]='.ko.xz'
24 + module_compression_algorithms[ZSTD]='.ko.zst'
25
26 local module_compression_algorithm
27 for module_compression_algorithm in "${!module_compression_algorithms[@]}"