From 97f59ffe938a77c0e255ccab043aea1092a6e46b Mon Sep 17 00:00:00 2001 From: Alexey Min Date: Tue, 12 Oct 2021 11:27:55 +0300 Subject: [PATCH] pmb/config: fixup zram check options (MR 2126) The main option - CONFIG_ZRAM - was not checked. Add it and its direct requirement - CONFIG_ZSMALLOC. The other two (ZSMALLOC_STAT, ZRAM_MEMORY_TRACKING) are for debugging information only. --- pmb/config/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index a875134c..38a0cab5 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -472,8 +472,8 @@ necessary_kconfig_options_containers = { necessary_kconfig_options_zram = { ">=3.14.0": { # zram support introduced here "all": { # all arches - "ZSMALLOC_STAT": True, - "ZRAM_MEMORY_TRACKING": True, + "ZRAM": True, + "ZSMALLOC": True, "CRYPTO_LZ4": True, "LZ4_COMPRESS": True, "SWAP": True,