From 89c2ff09268bc393128bc91b0ed386933cfe776d Mon Sep 17 00:00:00 2001 From: Alexander Martinz Date: Tue, 25 Oct 2022 09:40:53 +0200 Subject: [PATCH] pmb.parse.kconfig: explicitly add dependency on SWAP Commit d8f2f20186ca21465b66532d884ee260d05c540f removed the requirement of selecting MEMCG_SWAP for Kernels >= 6.1. However, it did not fully account for the behavior change, as MEMCG_SWAP depends on both MEMCG and SWAP. Signed-off-by: Alexander Martinz --- pmb/config/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 8fcd50d2..11b9b341 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -496,6 +496,7 @@ necessary_kconfig_options_containers = { "all": { # all arches "MEMCG": True, "DM_THIN_PROVISIONING": True, # Storage Drivers + "SWAP": True, }, "x86 x86_64": { # only for x86, x86_64 (and sparc64, ia64) "HUGETLB_PAGE": True,