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.
This commit is contained in:
Alexey Min 2021-10-12 11:27:55 +03:00
parent 58922142ac
commit 97f59ffe93
No known key found for this signature in database
GPG Key ID: EBF5ECFFFEE34DED
1 changed files with 2 additions and 2 deletions

View File

@ -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,