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.120; helo=mga04.intel.com; envelope-from=chao.b.zhang@intel.com; receiver=edk2-devel@lists.01.org Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) (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 3261C210BFF69 for ; Fri, 27 Jul 2018 22:35:03 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Jul 2018 22:35:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,412,1526367600"; d="scan'208";a="61392958" Received: from czhan46-mobl1.ccr.corp.intel.com ([10.249.169.247]) by orsmga006.jf.intel.com with ESMTP; 27 Jul 2018 22:35:00 -0700 From: "Zhang, Chao B" To: edk2-devel@lists.01.org Cc: Bi Dandan Date: Sat, 28 Jul 2018 13:34:58 +0800 Message-Id: <20180728053458.15156-1-chao.b.zhang@intel.com> X-Mailer: git-send-email 2.11.0.windows.1 Subject: [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:35:03 -0000 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 index 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 SecurityPkg/Tcg/Tcg2Config/Tcg2ConfigPei.inf { Tpm12DeviceLib|SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf -- 2.16.2.windows.1