diff options
author | Leo Famulari <leo@famulari.name> | 2025-01-01 18:20:54 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2025-01-03 14:15:10 -0500 |
commit | f1669d5cd8a52a1e034e46451787db396aa530ec (patch) | |
tree | 41ac6597eeb8360e0a627072f7ab9022ba7006d7 | |
parent | c50d7b3b050e9ee9622a4879f098a0067c122503 (diff) |
gnu: Fix RISC-V kernel config.
* gnu/packages/aux-files/linux-libre/6.11-riscv.conf: Use a Guix-y path to find
`modprobe` and compress the modules with GZIP, like we do on all the
other systems.
Change-Id: I76ceb878d00c2fdd04081143b1eec7e4485adfb1
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/aux-files/linux-libre/6.11-riscv.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/aux-files/linux-libre/6.11-riscv.conf b/gnu/packages/aux-files/linux-libre/6.11-riscv.conf index a365ff6e31..45d29ec4f4 100644 --- a/gnu/packages/aux-files/linux-libre/6.11-riscv.conf +++ b/gnu/packages/aux-files/linux-libre/6.11-riscv.conf @@ -661,12 +661,12 @@ CONFIG_MODULE_UNLOAD=y # CONFIG_MODVERSIONS is not set # CONFIG_MODULE_SRCVERSION_ALL is not set # CONFIG_MODULE_SIG is not set -CONFIG_MODULE_COMPRESS_NONE=y -# CONFIG_MODULE_COMPRESS_GZIP is not set +# CONFIG_MODULE_COMPRESS_NONE is not set +CONFIG_MODULE_COMPRESS_GZIP=y # CONFIG_MODULE_COMPRESS_XZ is not set # CONFIG_MODULE_COMPRESS_ZSTD is not set # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set -CONFIG_MODPROBE_PATH="/sbin/modprobe" +CONFIG_MODPROBE_PATH="/run/current-system/profile/bin/modprobe" # CONFIG_TRIM_UNUSED_KSYMS is not set CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y |