guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#58016] [PATCH] gnu: linux-libre: Support zram on all kernels.


From: Efraim Flashner
Subject: [bug#58016] [PATCH] gnu: linux-libre: Support zram on all kernels.
Date: Fri, 23 Sep 2022 09:08:32 +0300

* gnu/packages/linux.scm (%default-extra-linux-options): Add config
options to add zram support.
---

Currently we only have zram support in our kernel .conf files, this adds
it to all the linux-libre-<arch>-generic kernels, and any other ones I
may have forgotten about.

---
 gnu/packages/linux.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 306c18e398..18f8efe2f2 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -695,6 +695,10 @@ (define %default-extra-linux-options
     ("CONFIG_PROC_PID_CPUSET" . #t)
     ;; Allow disk encryption by default
     ("CONFIG_DM_CRYPT" . m)
+    ;; Support zram on all kernel configs
+    ("CONFIG_ZSWAP" . #t)
+    ("CONFIG_ZSMALLOC" . #t)
+    ("CONFIG_ZRAM" . m)
     ;; Modules required for initrd:
     ("CONFIG_NET_9P" . m)
     ("CONFIG_NET_9P_VIRTIO" . m)

base-commit: 2e8b4f9bfa00489fd3acff305837a79af236e183
-- 
2.37.3






reply via email to

[Prev in Thread] Current Thread [Next in Thread]