From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 4D21B820F1 for ; Fri, 3 Feb 2017 17:33:08 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Feb 2017 17:33:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,331,1477983600"; d="scan'208";a="1121901121" Received: from czhan46-mobl1.ccr.corp.intel.com ([10.239.192.54]) by fmsmga002.fm.intel.com with ESMTP; 03 Feb 2017 17:33:07 -0800 From: "Zhang, Chao B" To: edk2-devel@lists.01.org Cc: qin.long@intel.com, jiewen.yao@intel.com, Chao Zhang Date: Sat, 4 Feb 2017 09:33:04 +0800 Message-Id: <20170204013304.16360-2-chao.b.zhang@intel.com> X-Mailer: git-send-email 2.11.0.windows.1 In-Reply-To: <20170204013304.16360-1-chao.b.zhang@intel.com> References: <20170204013304.16360-1-chao.b.zhang@intel.com> Subject: [PATCH 2/2] MdePkg: UefiTcgPlatform.h: Add TCG_PCR_EVENT2_HDR definition X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2017 01:33:08 -0000 Add TCG_PCR_EVENT2_HDR definition. Cc: Long Qin Cc: Yao Jiewen Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chao Zhang --- MdePkg/Include/IndustryStandard/UefiTcgPlatform.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h b/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h index 8a3e170..cd1dea8 100644 --- a/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h +++ b/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h @@ -206,6 +206,16 @@ typedef struct tdTCG_PCR_EVENT2 { } TCG_PCR_EVENT2; // +// TCG PCR Event2 Header +// +typedef struct tdTCG_PCR_EVENT2_HDR{ + TCG_PCRINDEX PCRIndex; + TCG_EVENTTYPE EventType; + TPML_DIGEST_VALUES Digest; + UINT32 EventSize; +} TCG_PCR_EVENT2_HDR; + +// // Log Header Entry Data // typedef struct { -- 1.9.5.msysgit.1