From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail04.groups.io (mail04.groups.io [45.79.224.9]) by spool.mail.gandi.net (Postfix) with ESMTPS id 12803940068 for ; Mon, 15 Apr 2024 01:59:25 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=U1Dl/AXUzZ982+PQ24m6X2TcNET+yRp7hIn8qmeyngw=; 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=1713146364; v=1; b=X9+dCwRzKJkeqGBSw1hv//jiar6sFfQ3fGwDvUNpOXKDIql0uWUQlHWq5r7+imfnGJbaMJOI 74Vbbh453eUfc21cNt5N9xQ1PuBW/dwsSxD5pj3NgeH5ZGJCRDOGfIVthPNXZWOYJfkToLsMC/U fo8FsnJIifZgta2GN2ekqTUH1c8qoykXIal/Qk/KOdKJSnkoUzg0bCY5qqrjj7EVXh0VlNRZyT/ Zwkbfv7k6A1UPHpLA26rVHfnAhuSGoBVlH5bore9dJZO6BxMJVch+E5aj4GokC7yZEHMfLSpuas pG7cqFp006lsN0DG6r1oezxP7/D/XWD2jZtd96qINWtHg== X-Received: by 127.0.0.2 with SMTP id LFAjYY7687511xHBm0LMlhuU; Sun, 14 Apr 2024 18:59:24 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.13]) by mx.groups.io with SMTP id smtpd.web10.11508.1713146349326840827 for ; Sun, 14 Apr 2024 18:59:23 -0700 X-CSE-ConnectionGUID: /6q8HClLSFWqNhqQgt0jvg== X-CSE-MsgGUID: +9XOe5e6TeCHa5cqqiNhyA== X-IronPort-AV: E=McAfee;i="6600,9927,11044"; a="19662589" X-IronPort-AV: E=Sophos;i="6.07,202,1708416000"; d="scan'208";a="19662589" X-Received: from fmviesa009.fm.intel.com ([10.60.135.149]) by orvoesa105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2024 18:59:23 -0700 X-CSE-ConnectionGUID: h2nIjHRXR5i129BlFW0kYg== X-CSE-MsgGUID: lLfYr3b+SGu1+RK8oisPMQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.07,202,1708416000"; d="scan'208";a="21824307" X-Received: from shwdejointd777.ccr.corp.intel.com ([10.239.58.116]) by fmviesa009.fm.intel.com with ESMTP; 14 Apr 2024 18:59:21 -0700 From: "Wenxing Hou" To: devel@edk2.groups.io Cc: Andrew Fish , Michael D Kinney , Jiewen Yao Subject: [edk2-devel] [PATCH v3 08/10] .gitmodule: Add libspdm submodule for EDKII Date: Mon, 15 Apr 2024 09:58:57 +0800 Message-Id: <20240415015859.2997-9-wenxing.hou@intel.com> In-Reply-To: <20240415015859.2997-1-wenxing.hou@intel.com> References: <20240415015859.2997-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, 14 Apr 2024 18:59:23 -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: KrVhiYgLdknglxU3GrfTLxLtx7686176AA= 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=X9+dCwRz; 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 45.79.224.9 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 (#117734): https://edk2.groups.io/g/devel/message/117734 Mute This Topic: https://groups.io/mt/105528209/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-