From nobody Thu May 2 11:38:20 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+47305+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+47305+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1568673599; cv=none; d=zoho.com; s=zohoarc; b=ZRu5wpTNetu3MdMhG72qj2mWqZRxAgvPDsGGJon3kWkeY36i/IieqLH2gNlTLK3KeXyhKOQ2JqlpmXAYbpW3MMXNj1NRDJOdnnF1iilwRAyl9H8UlUWRJEe8lH6HBkbVXMAvEKaLDf9NBDREJ9HJOgc55AsA64+v0KLVBgxgWc8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568673599; h=Cc:Date:From:List-Id:List-Unsubscribe:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=nTX/kdIsztBm4p6N8j2Rnzek7Lz7JyKZ4db5sMDyf10=; b=G3/HzKtCGQdDTywSlYF0/TFPBvqNOEQhOgIftk51iiadptwKVR+FA/QmXbtDZjdGbrVhwnJ2GklT+xiZgIGciDPS8dnABKfEWVPwnEGPcplVTml3P+XeWjnaduyD4vMC5MeeOn0Xmr9doiYwDVPxEK6/Dg9lcNkO15yhLSGHIuo= 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+47305+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 156867359901587.01392045810917; Mon, 16 Sep 2019 15:39:59 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id tXzvYY1788612xRapmTgbNip; Mon, 16 Sep 2019 15:39:58 -0700 X-Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by groups.io with SMTP; Mon, 16 Sep 2019 15:39:57 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Sep 2019 15:39:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,514,1559545200"; d="scan'208";a="177188991" X-Received: from ydwei-desk.amr.corp.intel.com ([10.24.15.168]) by orsmga007.jf.intel.com with ESMTP; 16 Sep 2019 15:39:55 -0700 From: "David Wei" To: devel@edk2.groups.io Cc: Hao Wu , Liming Gao , Ankit Sinha , Agyeman Prince , Kubacki Michael A , Nate DeSimone , Michael D Kinney Subject: [edk2-devel] [edk2-platforms PATCH v2] SimicsOpenBoardPkg: Change Guid name to fix build error Date: Mon, 16 Sep 2019 15:39:55 -0700 Message-Id: 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,david.y.wei@intel.com X-Gm-Message-State: e96KmMEr8DrtbnhVHJToZ7cix1787277AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568673598; bh=Juq481iDWH441O1OmIo1Rl7McbUQpYwOYHSKc6MXvy8=; h=Cc:Date:From:Reply-To:Subject:To; b=kXTmlBTq+icNiSdSpudzaaCBYZtAg2NZbcwTwgN1Um0u6dHfQ73bbJ+mpTMmldlxpKg WsUd8+B5E7Dg0fxDBgdwrvRyZqKx8bd/tePokSUBsBo0d1bSAiOG38Upqf/FQ/YRvwx14 +QHWCiYrhRuVGh5f4v83g2p14AnBILqQBts= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" MinPlatform PKG now use gEfiSmmSmramMemoryGuid instead of gEfiSmmPeiSmramMemoryReserveGuid to build memory HOB. SimicsOpenBoardPkg need to update for it accordingly. Cc: Hao Wu Cc: Liming Gao Cc: Ankit Sinha Cc: Agyeman Prince Cc: Kubacki Michael A Cc: Nate DeSimone Cc: Michael D Kinney Signed-off-by: David Wei Reviewed-by: Liming Gao Reviewed-by: Michael Kubacki --- Platform/Intel/SimicsOpenBoardPkg/SimicsPei/MemDetect.c | 2 +- Platform/Intel/SimicsOpenBoardPkg/SimicsPei/SimicsPei.inf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/SimicsOpenBoardPkg/SimicsPei/MemDetect.c b/Plat= form/Intel/SimicsOpenBoardPkg/SimicsPei/MemDetect.c index 90e6d1d3cf..ee0eead5a8 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/SimicsPei/MemDetect.c +++ b/Platform/Intel/SimicsOpenBoardPkg/SimicsPei/MemDetect.c @@ -449,7 +449,7 @@ QemuInitializeRam ( SmramRanges =3D 1; =20 Hob.Raw =3D BuildGuidHob( - &gEfiSmmPeiSmramMemoryReserveGuid, + &gEfiSmmSmramMemoryGuid, BufferSize ); ASSERT(Hob.Raw); diff --git a/Platform/Intel/SimicsOpenBoardPkg/SimicsPei/SimicsPei.inf b/Pl= atform/Intel/SimicsOpenBoardPkg/SimicsPei/SimicsPei.inf index ccc7037d75..e466d57e4e 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/SimicsPei/SimicsPei.inf +++ b/Platform/Intel/SimicsOpenBoardPkg/SimicsPei/SimicsPei.inf @@ -39,7 +39,7 @@ =20 [Guids] gEfiMemoryTypeInformationGuid - gEfiSmmPeiSmramMemoryReserveGuid ## CONSUMES + gEfiSmmSmramMemoryGuid ## CONSUMES =20 [LibraryClasses] BaseLib --=20 2.16.2.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 (#47305): https://edk2.groups.io/g/devel/message/47305 Mute This Topic: https://groups.io/mt/34170515/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-