From 90420123e2c691a0707bcaba72e811130d3436cc Mon Sep 17 00:00:00 2001 From: Shuang Zheng Date: Tue, 25 May 2021 14:45:52 +0000 Subject: [PATCH] config_tools: fix the guest_flag error when saving scenario xml fix the guest_flag error when saving scenario xml from config tool UI. Tracked-On: #6075 Signed-off-by: Shuang Zheng --- misc/config_tools/library/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/config_tools/library/common.py b/misc/config_tools/library/common.py index fc00d71b0..f2689a118 100644 --- a/misc/config_tools/library/common.py +++ b/misc/config_tools/library/common.py @@ -21,7 +21,7 @@ DATACHECK_SCHEMA_FILE = SOURCE_ROOT_DIR + 'misc/config_tools/schema/datachecks.x PY_CACHES = ["__pycache__", "../board_config/__pycache__", "../scenario_config/__pycache__"] -GUEST_FLAG = ["0UL", "GUEST_FLAG_SECURE_WORLD_ENABLED", "GUEST_FLAG_LAPIC_PASSTHROUGH", +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"] MULTI_ITEM = ["guest_flag", "pcpu_id", "vcpu_clos", "input", "block", "network", "pci_dev", "shm_region", "communication_vuart"]