diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2023-03-31 12:10:43 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-03-31 17:38:27 +0000 |
commit | 66f4b1b0d2e603c2b0a3f4149976cdc297a3606d (patch) | |
tree | d0749558de618ab68ee777760821e7cfe9e5ee5f | |
parent | b08a19eae28e76fb5a296a604c27d06fab29b08a (diff) | |
download | edk2-66f4b1b0d2e603c2b0a3f4149976cdc297a3606d.tar.gz |
OvmfPkg/CI: Revert SMP mode
This is causing excessive boot times in the VS2019 IA32/X64 Full
run to shell tasks (> 2 minutes) and blocking all edk2 CI.
This patch removes the change so it can be root caused separately
without blocking other patches unrelated to OVMF.
Reverts f92a9dce10281c103b04d6b38283e0ff1d677b91
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
-rw-r--r-- | OvmfPkg/PlatformCI/PlatformBuildLib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/OvmfPkg/PlatformCI/PlatformBuildLib.py b/OvmfPkg/PlatformCI/PlatformBuildLib.py index 1ff85fdc24..64fca48a7d 100644 --- a/OvmfPkg/PlatformCI/PlatformBuildLib.py +++ b/OvmfPkg/PlatformCI/PlatformBuildLib.py @@ -196,7 +196,6 @@ class PlatformBuilder( UefiBuilder, BuildSettingsManager): args = "-debugcon stdio" # write messages to stdio
args += " -global isa-debugcon.iobase=0x402" # debug messages out thru virtual io port
args += " -net none" # turn off network
- args += " -smp 4"
args += f" -drive file=fat:rw:{VirtualDrive},format=raw,media=disk" # Mount disk with startup.nsh
if (self.env.GetValue("QEMU_HEADLESS").upper() == "TRUE"):
|