summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael D Kinney <michael.d.kinney@intel.com>2019-08-09 12:05:40 -0700
committerMichael D Kinney <michael.d.kinney@intel.com>2019-08-12 13:50:14 -0700
commit19ce9d3fc6428a7c171ff855112b3e29c221df96 (patch)
tree2242a87c3a8ab836f3f40f783f291819c53ede9e
parent84627927fa195703752c7fd5ab4437f87c547b87 (diff)
Vlv2Tbl2DevicePkg/PlatformSetupDxe: Fix setup info regression
The following commit removed the call to SetupInfo() from SystemConfigExtractConfig(). This caused the BIOS, Processor, Platform, and Memory information strings from being filled in with their proper values. https://github.com/tianocore/edk2-platforms/commit/6738c654c8eddccc2a1230a4541bc2cb74c10ea5 The call to SetupInfo() is added back. Cc: Zailiang Sun <zailiang.sun@intel.com> Cc: Gary Lin <glin@suse.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Zailiang Sun <Zailiang.sun@intel.com> Tested-by: Gary Lin <glin@suse.com>
-rw-r--r--Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe.c b/Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe.c
index 7a4987f6..f3850b2a 100644
--- a/Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe.c
+++ b/Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe.c
@@ -150,6 +150,7 @@ SystemConfigExtractConfig (
OUT EFI_STRING *Results
)
{
+ SetupInfo();
return EFI_UNSUPPORTED;
}