From cee8dc22f1ac474458d25d43a3043dcbee415b8d Mon Sep 17 00:00:00 2001 From: Vijay Dhanraj Date: Fri, 14 Feb 2020 16:40:16 -0800 Subject: [PATCH] acrn-config: Remove "GUEST_FLAG_CLOS_REQUIRED" from offline tool This patches removes the unused CLOS_required flag from the offline guest configuration tool. Tracked-On: #3715 Signed-off-by: Vijay Dhanraj Acked-by: Victor Sun --- misc/acrn-config/library/common.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/misc/acrn-config/library/common.py b/misc/acrn-config/library/common.py index 14b1b82ce..43894d819 100644 --- a/misc/acrn-config/library/common.py +++ b/misc/acrn-config/library/common.py @@ -17,8 +17,7 @@ HV_LICENSE_FILE = SOURCE_PATH + 'misc/acrn-config/library/hypervisor_license' PY_CACHES = ["__pycache__", "../board_config/__pycache__", "../scenario_config/__pycache__"] GUEST_FLAG = ["0UL", "GUEST_FLAG_SECURE_WORLD_ENABLED", "GUEST_FLAG_LAPIC_PASSTHROUGH", - "GUEST_FLAG_IO_COMPLETION_POLLING", "GUEST_FLAG_CLOS_REQUIRED", - "GUEST_FLAG_HIDE_MTRR", "GUEST_FLAG_RT"] + "GUEST_FLAG_IO_COMPLETION_POLLING", "GUEST_FLAG_HIDE_MTRR", "GUEST_FLAG_RT"] # Support 512M, 1G, 2G # pre launch less then 2G, sos vm less than 24G START_HPA_SIZE_LIST = ['0x20000000', '0x40000000', '0x80000000', 'CONFIG_SOS_RAM_SIZE']