From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 734FE21A18AA9 for ; Tue, 28 Mar 2017 05:29:08 -0700 (PDT) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP; 28 Mar 2017 05:29:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,236,1486454400"; d="scan'208";a="71265451" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by orsmga004.jf.intel.com with ESMTP; 28 Mar 2017 05:29:08 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 28 Mar 2017 05:29:07 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.212]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.42]) with mapi id 14.03.0248.002; Tue, 28 Mar 2017 20:29:05 +0800 From: "Yao, Jiewen" To: "Gao, Liming" , "edk2-devel@lists.01.org" Thread-Topic: [Patch] SignedCapsulePkg: Update RecoveryModuleLoadPei to report the correct FvInfo Thread-Index: AQHSp4osck4bggWL+ECUgOBIVQideaGqLqag Date: Tue, 28 Mar 2017 12:29:05 +0000 Message-ID: <74D8A39837DF1E4DA445A8C0B3885C503A915156@shsmsx102.ccr.corp.intel.com> References: <1490681484-3284-1-git-send-email-liming.gao@intel.com> In-Reply-To: <1490681484-3284-1-git-send-email-liming.gao@intel.com> Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch] SignedCapsulePkg: Update RecoveryModuleLoadPei to report the correct FvInfo X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Mar 2017 12:29:08 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: jiewen.yao@intel.com > -----Original Message----- > From: Gao, Liming > Sent: Tuesday, March 28, 2017 2:11 PM > To: edk2-devel@lists.01.org > Cc: Yao, Jiewen > Subject: [Patch] SignedCapsulePkg: Update RecoveryModuleLoadPei to report > the correct FvInfo >=20 > Update logic to install FvInfo PPI with its file system guid. >=20 > Cc: Jiewen Yao > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Liming Gao > --- > .../Universal/RecoveryModuleLoadPei/RecoveryModuleLoadPei.c | > 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git > a/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadP > ei.c > b/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoad > Pei.c > index c8c5ba0..c22e3a4 100644 > --- > a/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoadP > ei.c > +++ > b/SignedCapsulePkg/Universal/RecoveryModuleLoadPei/RecoveryModuleLoad > Pei.c > @@ -9,7 +9,7 @@ > ProcessRecoveryCapsule(), ProcessFmpCapsuleImage(), > ProcessRecoveryImage(), > ValidateFmpCapsule() will receive untrusted input and do basic validat= ion. >=20 > -Copyright (c) 2016, Intel Corporation. All rights reserved.
> +Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.
> This program and the accompanying materials > are licensed and made available under the terms and conditions of the BS= D > License > which accompanies this distribution. The full text of the license may b= e found > at > @@ -467,7 +467,7 @@ CreateHobForRecoveryCapsule ( > DEBUG((DEBUG_INFO, "BuildFvHob (FV in recovery) - 0x%lx - 0x%lx\n", > (UINT64)(UINTN)FvHeader, FvHeader->FvLength)); >=20 > PeiServicesInstallFvInfoPpi( > - NULL, > + &FvHeader->FileSystemGuid, > (VOID *)FvHeader, > (UINT32)FvHeader->FvLength, > NULL, > -- > 2.8.0.windows.1