From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
"Vang, Judah" <judah.vang@intel.com>
Cc: "Yao, Jiewen" <jiewen.yao@intel.com>,
"Kinney, Michael D" <michael.d.kinney@intel.com>,
"Wang, Jian J" <jian.j.wang@intel.com>
Subject: Re: [edk2-devel] [PATCH v5 00/19] UEFI variable protection
Date: Fri, 9 Dec 2022 08:03:42 +0000 [thread overview]
Message-ID: <PH0PR11MB5879AFCB3A06825FFFB3457D8C1C9@PH0PR11MB5879.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20221106073509.3071-1-judah.vang@intel.com>
Hi
Since this is a big feature in SecurityPkg and MdeModulePkg, I proposal to add *dedicated reviewer(s)* to support the maintenance work in EDKII.
Something like:
===============
MdeModulePkg: Protected Variable
F: MdeModulePkg/Universal/Variable/Protected/
F: <Please list all newly added file>
R: <Please give the reviewer name>
SecurityPkg: Protected Variable
F: SecurityPkg/Library/ProtectedVariableLib/
F: <Please list all newly added file>
R: <Please give the reviewer name>
===============
Please follow the style at https://github.com/tianocore/edk2/blob/master/Maintainers.txt
Thank you
Yao, Jiewen
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Judah
> Vang
> Sent: Sunday, November 6, 2022 3:35 PM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [PATCH v5 00/19] UEFI variable protection
>
> Patch 07 - Add PEI Variable Protection into a new directory and leave the
> existing PEI Variable unchanged.
>
> Patch 08 - Add RuntimeDxe Variable Protection into a new directory and
> keep existing Variable for RuntimeDxe unchanged.
>
> Patch 09 - Add reference to new Protected Variable libs.
>
> Patch 16 - Applied code review comments by adding PEIM to library class
>
> Patch 18 - Applied code review comments by removing unused API.
>
> Notes:
> The CryptoPkg changes are now being tracked separately.
> Patches 21 on is no longer needed due to reorganization of the new
> protected variable modules.
>
> Judah Vang (19):
> MdePkg: Add reference to new Ppi Guid
> MdeModulePkg: Update AUTH_VARIABLE_INFO struct
> MdeModulePkg: Add new ProtectedVariable GUIDs
> MdeModulePkg: Add new include files
> MdeModulePkg: Add new GUID for Variable Store Info
> MdeModulePkg: Add Null ProtectedVariable Library
> MdeModulePkg: Add new Variable functionality
> MdeModulePkg: Add support for Protected Variables
> MdeModulePkg: Reference Null ProtectedVariableLib
> SecurityPkg: Add new GUIDs for
> SecurityPkg: Add new KeyService types and defines
> SecurityPkg: Add new variable types and functions
> SecurityPkg: Update RPMC APIs with index
> SecurityPkg: Fix GetVariableKey API
> SecurityPkg: Add null encryption variable libs
> SecurityPkg: Add VariableKey library function
> SecurityPkg: Add EncryptionVariable lib with AES
> SecurityPkg: Add Protected Variable Services
> SecurityPkg: Add references to new *.inf files
>
> MdeModulePkg/MdeModulePkg.dec
> | 13 +-
> SecurityPkg/SecurityPkg.dec
> | 43 +-
> MdeModulePkg/MdeModulePkg.dsc
> | 20 +-
> MdeModulePkg/Test/MdeModulePkgHostTest.dsc
> | 8 +
> SecurityPkg/SecurityPkg.dsc
> | 13 +-
>
> MdeModulePkg/Library/ProtectedVariableLibNull/ProtectedVariableLibNull
> .inf | 34 +
> MdeModulePkg/Universal/Variable/Protected/Pei/VariablePei.inf
> | 79 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/RuntimeDxeUni
> tTest/VariableLockRequestToLockUnitTest.inf | 36 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eDxe.inf | 151 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmm.i
> nf | 153 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxe.inf | 119 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableStandal
> oneMm.inf | 143 +
> SecurityPkg/Library/EncryptionVariableLib/EncryptionVariableLib.inf
> | 43 +
>
> SecurityPkg/Library/EncryptionVariableLibNull/EncryptionVariableLibNull.in
> f | 34 +
> SecurityPkg/Library/ProtectedVariableLib/DxeProtectedVariableLib.inf
> | 64 +
> SecurityPkg/Library/ProtectedVariableLib/PeiProtectedVariableLib.inf
> | 68 +
> SecurityPkg/Library/ProtectedVariableLib/SmmProtectedVariableLib.inf
> | 67 +
>
> SecurityPkg/Library/ProtectedVariableLib/SmmRuntimeProtectedVariableLi
> b.inf | 62 +
> SecurityPkg/Library/VariableKeyLib/VariableKeyLib.inf
> | 36 +
> MdeModulePkg/Include/Guid/ProtectedVariable.h
> | 22 +
> MdeModulePkg/Include/Library/AuthVariableLib.h
> | 4 +-
> MdeModulePkg/Include/Library/EncryptionVariableLib.h
> | 165 +
> MdeModulePkg/Include/Library/ProtectedVariableLib.h
> | 607 +++
> MdeModulePkg/Universal/Variable/Protected/Pei/Variable.h
> | 225 ++
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableParsing.h
> | 309 ++
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableStore.h
> | 116 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/PrivilegePolym
> orphic.h | 158 +
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Variable.h
> | 948 +++++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableNonVol
> atile.h | 67 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableParsing
> .h | 424 ++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eCache.h | 51 +
> MdePkg/Include/Ppi/ReadOnlyVariable2.h
> | 4 +-
> SecurityPkg/Include/Library/RpmcLib.h
> | 15 +-
> SecurityPkg/Include/Library/VariableKeyLib.h
> | 37 +-
> SecurityPkg/Include/Ppi/KeyServicePpi.h
> | 57 +
> SecurityPkg/Library/EncryptionVariableLib/EncryptionVariable.h
> | 49 +
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableInternal.h
> | 589 +++
> MdeModulePkg/Library/ProtectedVariableLibNull/ProtectedVariable.c
> | 336 ++
> MdeModulePkg/Universal/Variable/Protected/Pei/Variable.c
> | 628 +++
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableParsing.c
> | 941 +++++
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableStore.c
> | 307 ++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Measurement.c
> | 343 ++
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Reclaim.c
> | 504 +++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/RuntimeDxeUni
> tTest/VariableLockRequestToLockUnitTest.c | 607 +++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/SpeculationBar
> rierDxe.c | 27 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/SpeculationBar
> rierSmm.c | 26 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/TcgMorLockDxe
> .c | 153 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/TcgMorLockSm
> m.c | 569 +++
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VarCheck.c
> | 101 +
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Variable.c
> | 4037 ++++++++++++++++++++
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableDxe.c
> | 670 ++++
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableExLib.c
> | 417 ++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableLockRe
> questToLock.c | 96 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableNonVol
> atile.c | 537 +++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableParsing
> .c | 1110 ++++++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariablePolicyS
> mmDxe.c | 575 +++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eCache.c | 158 +
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmm.c
> | 1268 ++++++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxe.c | 1895 +++++++++
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableStandal
> oneMm.c | 89 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableTraditi
> onalMm.c | 130 +
> SecurityPkg/Library/EncryptionVariableLib/EncryptionVariable.c
> | 734 ++++
> SecurityPkg/Library/EncryptionVariableLibNull/EncryptionVariable.c
> | 92 +
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableCommon.c
> | 2103 ++++++++++
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableDxe.c
> | 163 +
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariablePei.c
> | 1327 +++++++
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableSmm.c
> | 209 +
>
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableSmmDxeComm
> on.c | 967 +++++
>
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableSmmRuntime.c
> | 233 ++
> SecurityPkg/Library/RpmcLibNull/RpmcLibNull.c
> | 8 +-
> SecurityPkg/Library/VariableKeyLib/VariableKeyLib.c
> | 59 +
> SecurityPkg/Library/VariableKeyLibNull/VariableKeyLibNull.c
> | 8 +-
> MdeModulePkg/Universal/Variable/Protected/Pei/PeiVariable.uni
> | 16 +
> MdeModulePkg/Universal/Variable/Protected/Pei/PeiVariableExtra.uni
> | 14 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eDxe.uni | 22 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eDxeExtra.uni | 14 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmm.u
> ni | 27 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmEx
> tra.uni | 14 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxe.uni | 23 +
>
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxeExtra.uni | 14 +
> 80 files changed, 26556 insertions(+), 48 deletions(-)
> create mode 100644
> MdeModulePkg/Library/ProtectedVariableLibNull/ProtectedVariableLibNull
> .inf
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/VariablePei.inf
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/RuntimeDxeUni
> tTest/VariableLockRequestToLockUnitTest.inf
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eDxe.inf
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmm.i
> nf
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxe.inf
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableStandal
> oneMm.inf
> create mode 100644
> SecurityPkg/Library/EncryptionVariableLib/EncryptionVariableLib.inf
> create mode 100644
> SecurityPkg/Library/EncryptionVariableLibNull/EncryptionVariableLibNull.in
> f
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/DxeProtectedVariableLib.inf
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/PeiProtectedVariableLib.inf
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/SmmProtectedVariableLib.inf
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/SmmRuntimeProtectedVariableLi
> b.inf
> create mode 100644 SecurityPkg/Library/VariableKeyLib/VariableKeyLib.inf
> create mode 100644 MdeModulePkg/Include/Guid/ProtectedVariable.h
> create mode 100644
> MdeModulePkg/Include/Library/EncryptionVariableLib.h
> create mode 100644
> MdeModulePkg/Include/Library/ProtectedVariableLib.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/Variable.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableParsing.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableStore.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/PrivilegePolym
> orphic.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Variable.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableNonVol
> atile.h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableParsing
> .h
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eCache.h
> create mode 100644 SecurityPkg/Include/Ppi/KeyServicePpi.h
> create mode 100644
> SecurityPkg/Library/EncryptionVariableLib/EncryptionVariable.h
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableInternal.h
> create mode 100644
> MdeModulePkg/Library/ProtectedVariableLibNull/ProtectedVariable.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/Variable.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableParsing.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/VariableStore.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Measurement.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Reclaim.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/RuntimeDxeUni
> tTest/VariableLockRequestToLockUnitTest.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/SpeculationBar
> rierDxe.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/SpeculationBar
> rierSmm.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/TcgMorLockDxe
> .c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/TcgMorLockSm
> m.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VarCheck.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/Variable.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableDxe.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableExLib.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableLockRe
> questToLock.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableNonVol
> atile.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableParsing
> .c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariablePolicyS
> mmDxe.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eCache.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmm.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxe.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableStandal
> oneMm.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableTraditi
> onalMm.c
> create mode 100644
> SecurityPkg/Library/EncryptionVariableLib/EncryptionVariable.c
> create mode 100644
> SecurityPkg/Library/EncryptionVariableLibNull/EncryptionVariable.c
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableCommon.c
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableDxe.c
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariablePei.c
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableSmm.c
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableSmmDxeComm
> on.c
> create mode 100644
> SecurityPkg/Library/ProtectedVariableLib/ProtectedVariableSmmRuntime.c
> create mode 100644 SecurityPkg/Library/VariableKeyLib/VariableKeyLib.c
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/PeiVariable.uni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/Pei/PeiVariableExtra.uni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eDxe.uni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableRuntim
> eDxeExtra.uni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmm.u
> ni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmEx
> tra.uni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxe.uni
> create mode 100644
> MdeModulePkg/Universal/Variable/Protected/RuntimeDxe/VariableSmmR
> untimeDxeExtra.uni
>
> --
> 2.35.1.windows.2
>
>
>
>
>
next prev parent reply other threads:[~2022-12-09 8:03 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-06 7:34 [PATCH v5 00/19] UEFI variable protection Judah Vang
2022-11-06 7:34 ` [PATCH v5 01/19] MdePkg: Add reference to new Ppi Guid Judah Vang
2022-11-06 7:34 ` [PATCH v5 02/19] MdeModulePkg: Update AUTH_VARIABLE_INFO struct Judah Vang
2022-11-06 7:34 ` [PATCH v5 03/19] MdeModulePkg: Add new ProtectedVariable GUIDs Judah Vang
2022-11-06 7:34 ` [PATCH v5 04/19] MdeModulePkg: Add new include files Judah Vang
2022-11-22 6:31 ` Wang, Jian J
2022-11-06 7:34 ` [PATCH v5 05/19] MdeModulePkg: Add new GUID for Variable Store Info Judah Vang
2022-11-06 7:34 ` [PATCH v5 06/19] MdeModulePkg: Add Null ProtectedVariable Library Judah Vang
2022-11-22 6:39 ` Wang, Jian J
2022-11-06 7:34 ` [PATCH v5 07/19] MdeModulePkg: Add new Variable functionality Judah Vang
2022-11-14 3:43 ` Wang, Jian J
[not found] ` <1727569A8ECB6F9D.19699@groups.io>
2022-11-14 4:27 ` [edk2-devel] " Wang, Jian J
2022-11-06 7:34 ` [PATCH v5 08/19] MdeModulePkg: Add support for Protected Variables Judah Vang
2022-11-14 7:14 ` Wang, Jian J
2022-11-14 17:19 ` Judah Vang
2022-11-15 8:49 ` [edk2-devel] " Sami Mujawar
2022-11-22 6:26 ` Wang, Jian J
[not found] ` <1729D430BF77E016.5511@groups.io>
2022-11-22 6:42 ` Wang, Jian J
2022-11-06 7:34 ` [PATCH v5 09/19] MdeModulePkg: Reference Null ProtectedVariableLib Judah Vang
2022-11-22 6:44 ` Wang, Jian J
2022-11-06 7:35 ` [PATCH v5 10/19] SecurityPkg: Add new GUIDs for Judah Vang
2022-11-06 7:35 ` [PATCH v5 11/19] SecurityPkg: Add new KeyService types and defines Judah Vang
2022-11-22 6:46 ` Wang, Jian J
2022-11-06 7:35 ` [PATCH v5 12/19] SecurityPkg: Add new variable types and functions Judah Vang
2022-11-06 7:35 ` [PATCH v5 13/19] SecurityPkg: Update RPMC APIs with index Judah Vang
2022-11-06 7:35 ` [PATCH v5 14/19] SecurityPkg: Fix GetVariableKey API Judah Vang
2022-11-06 7:35 ` [PATCH v5 15/19] SecurityPkg: Add null encryption variable libs Judah Vang
2022-11-22 6:55 ` Wang, Jian J
2022-11-06 7:35 ` [PATCH v5 16/19] SecurityPkg: Add VariableKey library function Judah Vang
2022-11-06 7:35 ` [PATCH v5 17/19] SecurityPkg: Add EncryptionVariable lib with AES Judah Vang
2022-11-22 7:15 ` Wang, Jian J
2022-11-06 7:35 ` [PATCH v5 18/19] SecurityPkg: Add Protected Variable Services Judah Vang
2022-11-22 7:59 ` Wang, Jian J
2022-11-06 7:35 ` [PATCH v5 19/19] SecurityPkg: Add references to new *.inf files Judah Vang
2022-11-22 8:05 ` Wang, Jian J
2022-12-09 8:03 ` Yao, Jiewen [this message]
[not found] ` <172F11512E3044E7.1612@groups.io>
2022-12-09 9:41 ` [edk2-devel] [PATCH v5 00/19] UEFI variable protection Yao, Jiewen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=PH0PR11MB5879AFCB3A06825FFFB3457D8C1C9@PH0PR11MB5879.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox