From cc45a94d8207233f47cddf9f01bf6658b6707022 Mon Sep 17 00:00:00 2001 From: Zide Chen Date: Thu, 10 Jun 2021 13:01:32 -0700 Subject: [PATCH] config_tools: add the missing GUEST_FLAG_NVMX_ENABLED to common.py Without this, the GUEST_FLAG_NVMX_ENABLED doesn't show up in the drop-down list of "guest_flags" in the ACRN config GUI. Tracked-On: #5923 Signed-off-by: Zide Chen --- misc/config_tools/library/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/config_tools/library/common.py b/misc/config_tools/library/common.py index 5ca9a6565..2bbd89089 100644 --- a/misc/config_tools/library/common.py +++ b/misc/config_tools/library/common.py @@ -22,7 +22,8 @@ DATACHECK_SCHEMA_FILE = SOURCE_ROOT_DIR + 'misc/config_tools/schema/datachecks.x PY_CACHES = ["__pycache__", "../board_config/__pycache__", "../scenario_config/__pycache__"] GUEST_FLAG = ["0", "0UL", "GUEST_FLAG_SECURE_WORLD_ENABLED", "GUEST_FLAG_LAPIC_PASSTHROUGH", - "GUEST_FLAG_IO_COMPLETION_POLLING", "GUEST_FLAG_HIDE_MTRR", "GUEST_FLAG_RT"] + "GUEST_FLAG_IO_COMPLETION_POLLING", "GUEST_FLAG_NVMX_ENABLED", "GUEST_FLAG_HIDE_MTRR", + "GUEST_FLAG_RT"] MULTI_ITEM = ["guest_flag", "pcpu_id", "vcpu_clos", "input", "block", "network", "pci_dev", "shm_region", "communication_vuart"]