me
/
guix
Archived
1
0
Fork 0

gnu: linux-libre: Support zram on all kernels.

* gnu/packages/linux.scm (%default-extra-linux-options): Add config
options to add zram support.
master
Efraim Flashner 2022-09-23 09:05:47 +03:00
parent 70fc8f6d61
commit 40a42c4348
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 0 deletions

View File

@ -696,6 +696,10 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration."
("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)