From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.115; helo=mga14.intel.com; envelope-from=dandan.bi@intel.com; receiver=edk2-devel@lists.01.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (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 B7E6A210C42B7 for ; Fri, 27 Jul 2018 22:43:41 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Jul 2018 22:43:41 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,412,1526367600"; d="scan'208";a="57825032" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga007.fm.intel.com with ESMTP; 27 Jul 2018 22:43:01 -0700 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Fri, 27 Jul 2018 22:43:01 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.319.2; Fri, 27 Jul 2018 22:43:01 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.124]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.57]) with mapi id 14.03.0319.002; Sat, 28 Jul 2018 13:42:59 +0800 From: "Bi, Dandan" To: "Zhang, Chao B" , "edk2-devel@lists.01.org" Thread-Topic: [Patch] SecurityPkgDSC: Fix 2 DSC build error Thread-Index: AQHUJjS8+SupcYb73EaWkHcGpLykcKSkHswg Date: Sat, 28 Jul 2018 05:42:57 +0000 Message-ID: <3C0D5C461C9E904E8F62152F6274C0BB3BB4EF8A@shsmsx102.ccr.corp.intel.com> References: <20180728053458.15156-1-chao.b.zhang@intel.com> In-Reply-To: <20180728053458.15156-1-chao.b.zhang@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch] SecurityPkgDSC: Fix 2 DSC build error X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2018 05:43:42 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Dandan Bi Thanks, Dandan -----Original Message----- From: Zhang, Chao B=20 Sent: Saturday, July 28, 2018 1:35 PM To: edk2-devel@lists.01.org Cc: Bi, Dandan Subject: [Patch] SecurityPkgDSC: Fix 2 DSC build error Error is caused by SHA384/SHA512 hash lib change in. Cc: Bi Dandan Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zhang, Chao B --- SecurityPkg/SecurityPkg.dsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SecurityPkg/SecurityPkg.dsc b/SecurityPkg/SecurityPkg.dsc inde= x a705cdcf72..68a2953162 100644 --- a/SecurityPkg/SecurityPkg.dsc +++ b/SecurityPkg/SecurityPkg.dsc @@ -217,12 +217,12 @@ # # TPM2 # SecurityPkg/Library/HashInstanceLibSha1/HashInstanceLibSha1.inf SecurityPkg/Library/HashInstanceLibSha256/HashInstanceLibSha256.inf - SecurityPkg/Library/HashInstanceLibSha1/HashInstanceLibSha384.inf - SecurityPkg/Library/HashInstanceLibSha256/HashInstanceLibSha512.inf + SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf + SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf =20 SecurityPkg/Tcg/Tcg2Config/Tcg2ConfigPei.inf { Tpm12DeviceLib|SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLib= DTpm.inf Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTp= m.inf -- 2.16.2.windows.1