From c1b5f7ad6b82b540e2f00dc69c9a0564234aa451 Mon Sep 17 00:00:00 2001 From: Michael Turner Date: Fri, 14 Apr 2023 12:49:40 -0700 Subject: [PATCH] Add SMM_ENABLED=FALSE --- DfciDutFiles/BuildDfci.py | 1 + DfciDutFiles/RunDfci.py | 1 + 2 files changed, 2 insertions(+) diff --git a/DfciDutFiles/BuildDfci.py b/DfciDutFiles/BuildDfci.py index 42d4901157..2affa4549b 100644 --- a/DfciDutFiles/BuildDfci.py +++ b/DfciDutFiles/BuildDfci.py @@ -18,6 +18,7 @@ args = " BLD_*_GUI_FRONT_PAGE=TRUE" args += " BLD_*_NETWORK_ALLOW_HTTP_CONNECTIONS=TRUE" args += " BLD_*_QEMU_CORE_NUM=4" + args += " BLD_*_SMM_ENABLED=FALSE" args += " --clean" cmd = platformbuild + args diff --git a/DfciDutFiles/RunDfci.py b/DfciDutFiles/RunDfci.py index 3f37149200..10a81bfc27 100644 --- a/DfciDutFiles/RunDfci.py +++ b/DfciDutFiles/RunDfci.py @@ -60,6 +60,7 @@ args += " ALT_BOOT_ENABLE=TRUE" args += " BLD_*_QEMU_CORE_NUM=4" + args += " BLD_*_SMM_ENABLED=FALSE" cmd = platformbuild + args os.system(cmd)