summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@debian.org>2025-05-29 23:06:45 -0700
committerLeo Famulari <leo@famulari.name>2025-05-31 20:05:49 -0400
commit02abb700783a3c8a824d768ef6130f4e2b4049fd (patch)
treef2e250e3392d3e8b0ec789303717f669f14c30b0 /gnu/packages/linux.scm
parentc55d2c0cd2861332aa6b9a5e9ced6fd00fef3634 (diff)
gnu: linux-libre-arm64-mnt-reform: Update kernel configuration.
Fixes: https://codeberg.org/guix/guix/issues/101 * gnu/packages/linux.scm (linux-libre-arm64-mnt-reform): Add CONFIG_KEY_DH_OPERATIONS, CONFIG_CRYPTO_USER_API_HASH, CONFIG_CRYPTO_USER_API_SKCIPHER, CONFIG_CRYPTO_USER_API_RNG, and CONFIG_CRYPTO_USER_API_AEAD to kernel configuration. Change-Id: I7ded159a727d092526a573140591741c2a0804b6
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 53e618ffa65..570f42db13d 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1598,6 +1598,12 @@ Linux kernel. It has been modified to remove all non-free binary blobs.")
("CONFIG_VIDEO_ROCKCHIP_VDEC2" . m)
("CONFIG_ROCKCHIP_DW_HDMI_QP" . #true)
("CONFIG_ROCKCHIP_DW_MIPI_DSI" . #true)
+ ;; Fixes https://codeberg.org/guix/guix/issues/101
+ ("CONFIG_CRYPTO_USER_API_HASH" . #true)
+ ("CONFIG_CRYPTO_USER_API_SKCIPHER" . #true)
+ ("CONFIG_CRYPTO_USER_API_RNG" . #true)
+ ("CONFIG_CRYPTO_USER_API_AEAD" . #true)
+ ("CONFIG_KEY_DH_OPERATIONS" . #true)
;; Provide support for ath9k wireless
("CONFIG_ATH9K" . m)
("CONFIG_ATH9K_HTC" . m))