From 1fee644dcea06960afd99684cbb9ec38efe31572 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Wed, 7 Sep 2022 22:49:36 +0200 Subject: [PATCH] pmb.parse.kconfig: fix containers check for x86 (MR 2204) Options in this list are not supposed to have CONFIG_ prefix, remove it. --- pmb/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 189bf275..85102cb3 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -499,7 +499,7 @@ necessary_kconfig_options_containers = { "DM_THIN_PROVISIONING": True, # Storage Drivers }, "x86 x86_64": { # only for x86, x86_64 (and sparc64, ia64) - "CONFIG_HUGETLB_PAGE": True, + "HUGETLB_PAGE": True, "CGROUP_HUGETLB": True, # Optional section } },