From nobody Tue Apr 23 23:06:47 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+45291+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+45291+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1565379248; cv=none; d=zoho.com; s=zohoarc; b=OECSrECE3A3+P8WhBVKkpcyy4h2Zt5bfCUbkFuR0FNf3ATMz7NzsgCJdJtN8Y8UDkezYVgc+11qlS2R3DFultto9T6maExgUTb813wUDoIcbRykc7hz22LGui/H5J59rohVRWDCcjV++EMgZEIHTu0YLfRcG/VNTBArfeFFwU5I= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1565379248; h=Content-Transfer-Encoding:Cc:Date:From:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=paMkklQ0GNSD2KkaFJzKII4xBieGryDDWbeN7pOxFRw=; b=lkZm6uC421YnzYtlH9m+JNwjkl1nCnLDYry0J2TDYgkHhjSbXLWXYp75xg7QyWiAsGjnsA2oTnY/9wDhEBq0E1ImBRXbftdy2eTJClHdJJi5e6xDl2NEmgaedofBFhxOM3ZbRrJquOPo72s/k8vy5noeuYniN6DbI6nldi1u/Qc= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+45291+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1565379248322331.66027903721886; Fri, 9 Aug 2019 12:34:08 -0700 (PDT) Return-Path: X-Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by groups.io with SMTP; Fri, 09 Aug 2019 12:34:07 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Aug 2019 12:34:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,366,1559545200"; d="scan'208";a="326715766" X-Received: from unknown (HELO mdkinney-MOBL2.amr.corp.intel.com) ([10.241.98.74]) by orsmga004.jf.intel.com with ESMTP; 09 Aug 2019 12:34:06 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Zailiang Sun , Gary Lin Subject: [edk2-devel] [Patch] Vlv2Tbl2DevicePkg/PlatformSetupDxe: Fix setup info regression Date: Fri, 9 Aug 2019 12:34:03 -0700 Message-Id: <20190809193403.7392-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,michael.d.kinney@intel.com Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1565379248; bh=83bR7f/L0IreUGBbNn5R8h0eKYrMk6/qteu9hUnFhhA=; h=Cc:Date:From:Reply-To:Subject:To; b=MDQ1JA26ELzrDOrhYzLB7+AoxQvdO5p5OjVRt9AUD/kvWioy4KyUhK1j955cHKKdQ29 G2U0JhJc3VZ0jsyG/HciblkAd/5RK4hUrXdu/y2JBr5gDznVMUyCa0XnshZBtLWJbshLK t85WKMHdsy/in06ktclhkoMN/YQZbCzu9UY= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" 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/6738c654c8eddccc2a1230a4= 541bc2cb74c10ea5 The call to SetupInfo() is added back. Cc: Zailiang Sun Cc: Gary Lin Signed-off-by: Michael D Kinney Reviewed-by: Zailiang Sun Tested-by: Gary Lin --- .../Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetu= pDxe.c b/Platform/Intel/Vlv2TbltDevicePkg/PlatformSetupDxe/PlatformSetupDxe= .c index 7a4987f656..f3850b2aff 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; } =20 --=20 2.21.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#45291): https://edk2.groups.io/g/devel/message/45291 Mute This Topic: https://groups.io/mt/32814191/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-