From 02abb700783a3c8a824d768ef6130f4e2b4049fd Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 29 May 2025 23:06:45 -0700 Subject: [PATCH] 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 --- gnu/packages/linux.scm | 6 ++++++ 1 file changed, 6 insertions(+) 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))