From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 6D890AC0013 for ; Mon, 8 Apr 2024 01:47:16 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=vEyiRi/f7LGuxR6oL0ODdQXPAcrv1oXPsP1zDjuJ+9U=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240206; t=1712540835; v=1; b=3IlGcaKgr0dglUphEx71r4QHUEexcVF9S+8L0HcUsMf0BSNqnBwft1cSz8b3pjpt+E+uPnM0 ZJU8mDm/X7oiJsA8G+nOQBkeRPJQWm14H0vEs+/TKlxyWuQYzaOy7OFnEzzylE0Wt6AhgjMUNaC EuH4RJdtysy3p2MegYBXcE7sNfIzC+5wbYuhy26NR639qmrGlGKKMI0R+6WGRl104I1bkWCbERD 6LduuJ1IbQwB3SwwE43MEoMqZD9kjrIcdcw5X6I6x0B2koDZZmiFGmvtz0OkfGf8vm3g/HONAlq 3LvKogQgBjbTr4pgisysUvWVm1tiVHhj0H1d5hW9rRXjw== X-Received: by 127.0.0.2 with SMTP id 9uLlYY7687511xivpwDOkOWv; Sun, 07 Apr 2024 18:47:15 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.18]) by mx.groups.io with SMTP id smtpd.web10.96790.1712540832421126792 for ; Sun, 07 Apr 2024 18:47:13 -0700 X-CSE-ConnectionGUID: M/negecER56GuLN9hUlsIQ== X-CSE-MsgGUID: Xc+H8379Rxy9pfk1wxYE4A== X-IronPort-AV: E=McAfee;i="6600,9927,11037"; a="7969757" X-IronPort-AV: E=Sophos;i="6.07,186,1708416000"; d="scan'208";a="7969757" X-Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by orvoesa110.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2024 18:47:12 -0700 X-CSE-ConnectionGUID: qCAfkPaDRtqxK4WidEfZJg== X-CSE-MsgGUID: 5a6PbNNPSjawhdMnBki5eg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.07,186,1708416000"; d="scan'208";a="24209763" X-Received: from shwdejointd777.ccr.corp.intel.com ([10.239.58.116]) by fmviesa003.fm.intel.com with ESMTP; 07 Apr 2024 18:47:09 -0700 From: "Wenxing Hou" To: devel@edk2.groups.io Cc: Andrew Fish , Michael D Kinney , Jiewen Yao Subject: [edk2-devel] [PATCH v2 8/9] .gitmodule: Add libspdm submodule for EDKII Date: Mon, 8 Apr 2024 09:46:48 +0800 Message-Id: <20240408014649.2521-9-wenxing.hou@intel.com> In-Reply-To: <20240408014649.2521-1-wenxing.hou@intel.com> References: <20240408014649.2521-1-wenxing.hou@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Sun, 07 Apr 2024 18:47:13 -0700 Resent-From: wenxing.hou@intel.com Reply-To: devel@edk2.groups.io,wenxing.hou@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: M5P3LtuwM0WvJuYJWtUWQnd8x7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=3IlGcaKg; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io libspdm is submodule, which will be used in DeviceSecurity. Cc: Andrew Fish Cc: Michael D Kinney Cc: Michael D Kinney Cc: Jiewen Yao Signed-off-by: Wenxing Hou --- .gitmodules | 3 +++ SecurityPkg/DeviceSecurity/SpdmLib/libspdm | 1 + 2 files changed, 4 insertions(+) create mode 160000 SecurityPkg/DeviceSecurity/SpdmLib/libspdm diff --git a/.gitmodules b/.gitmodules index 60d54b45eb..7f069abd3d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -35,3 +35,6 @@ [submodule "CryptoPkg/Library/MbedTlsLib/mbedtls"] path = CryptoPkg/Library/MbedTlsLib/mbedtls url = https://github.com/ARMmbed/mbedtls +[submodule "SecurityPkg/DeviceSecurity/SpdmLib/libspdm"] + path = SecurityPkg/DeviceSecurity/SpdmLib/libspdm + url = https://github.com/DMTF/libspdm.git diff --git a/SecurityPkg/DeviceSecurity/SpdmLib/libspdm b/SecurityPkg/DeviceSecurity/SpdmLib/libspdm new file mode 160000 index 0000000000..4c92ff5ced --- /dev/null +++ b/SecurityPkg/DeviceSecurity/SpdmLib/libspdm @@ -0,0 +1 @@ +Subproject commit 4c92ff5ced7862e4f2eea945dd723d2e1b1fc476 -- 2.26.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#117485): https://edk2.groups.io/g/devel/message/117485 Mute This Topic: https://groups.io/mt/105394122/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-