[edk2] [PATCH 0/5] Propagate PEI-phase FV authentication status to DXE

Star Zeng posted 5 patches 6 years, 6 months ago
Failed in applying to current master (apply log)
.../Universal/FirmwareVolume/FwVolDxe/FwVol.c      | 73 ++++++++++++++++------
.../FirmwareVolume/FwVolDxe/FwVolDriver.h          |  3 +-
.../Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf |  4 +-
.../Library/PeiHobLibFramework/HobLib.c            | 54 +++++++++++++++-
MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c            | 41 ++++++++++--
MdeModulePkg/Core/Dxe/FwVol/FwVol.c                | 13 ++--
MdeModulePkg/Core/Dxe/FwVolBlock/FwVolBlock.c      | 23 +++++--
MdeModulePkg/Core/Pei/FwVol/FwVol.c                |  9 +++
MdePkg/Include/Library/HobLib.h                    | 34 +++++++++-
MdePkg/Include/Pi/PiHob.h                          | 43 ++++++++++++-
MdePkg/Library/DxeCoreHobLib/HobLib.c              | 35 ++++++++++-
MdePkg/Library/DxeHobLib/HobLib.c                  | 32 ++++++++++
MdePkg/Library/PeiHobLib/HobLib.c                  | 54 +++++++++++++++-
13 files changed, 371 insertions(+), 47 deletions(-)
[edk2] [PATCH 0/5] Propagate PEI-phase FV authentication status to DXE
Posted by Star Zeng 6 years, 6 months ago
FV3 HOB was introduced by new (>= 1.5) PI spec, it is intended to
be used to propagate PEI-phase FV authentication status to DXE.
Check the separated patches for the details.


Cc: Liming Gao <liming.gao@intel.com>

Star Zeng (5):
  MdePkg PiHob.h: Add FV3 HOB definitions
  MdePkg HobLib: Add BuildFv3Hob API
  IntelFrameworkPkg PeiHobLibFramework: Implement BuildFv3Hob
  MdeModulePkg Core: Propagate PEI-phase FV authentication status to DXE
  IntelFrameworkModulePkg FwVolDxe: Get FV auth status propagated from
    PEI

 .../Universal/FirmwareVolume/FwVolDxe/FwVol.c      | 73 ++++++++++++++++------
 .../FirmwareVolume/FwVolDxe/FwVolDriver.h          |  3 +-
 .../Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf |  4 +-
 .../Library/PeiHobLibFramework/HobLib.c            | 54 +++++++++++++++-
 MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c            | 41 ++++++++++--
 MdeModulePkg/Core/Dxe/FwVol/FwVol.c                | 13 ++--
 MdeModulePkg/Core/Dxe/FwVolBlock/FwVolBlock.c      | 23 +++++--
 MdeModulePkg/Core/Pei/FwVol/FwVol.c                |  9 +++
 MdePkg/Include/Library/HobLib.h                    | 34 +++++++++-
 MdePkg/Include/Pi/PiHob.h                          | 43 ++++++++++++-
 MdePkg/Library/DxeCoreHobLib/HobLib.c              | 35 ++++++++++-
 MdePkg/Library/DxeHobLib/HobLib.c                  | 32 ++++++++++
 MdePkg/Library/PeiHobLib/HobLib.c                  | 54 +++++++++++++++-
 13 files changed, 371 insertions(+), 47 deletions(-)

-- 
2.13.3.windows.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Re: [edk2] [PATCH 0/5] Propagate PEI-phase FV authentication status to DXE
Posted by Gao, Liming 6 years, 6 months ago
Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: Zeng, Star
>Sent: Wednesday, October 04, 2017 10:21 PM
>To: edk2-devel@lists.01.org
>Cc: Zeng, Star <star.zeng@intel.com>; Gao, Liming <liming.gao@intel.com>
>Subject: [PATCH 0/5] Propagate PEI-phase FV authentication status to DXE
>
>FV3 HOB was introduced by new (>= 1.5) PI spec, it is intended to
>be used to propagate PEI-phase FV authentication status to DXE.
>Check the separated patches for the details.
>
>
>Cc: Liming Gao <liming.gao@intel.com>
>
>Star Zeng (5):
>  MdePkg PiHob.h: Add FV3 HOB definitions
>  MdePkg HobLib: Add BuildFv3Hob API
>  IntelFrameworkPkg PeiHobLibFramework: Implement BuildFv3Hob
>  MdeModulePkg Core: Propagate PEI-phase FV authentication status to DXE
>  IntelFrameworkModulePkg FwVolDxe: Get FV auth status propagated from
>    PEI
>
> .../Universal/FirmwareVolume/FwVolDxe/FwVol.c      | 73
>++++++++++++++++------
> .../FirmwareVolume/FwVolDxe/FwVolDriver.h          |  3 +-
> .../Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf |  4 +-
> .../Library/PeiHobLibFramework/HobLib.c            | 54 +++++++++++++++-
> MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c            | 41 ++++++++++--
> MdeModulePkg/Core/Dxe/FwVol/FwVol.c                | 13 ++--
> MdeModulePkg/Core/Dxe/FwVolBlock/FwVolBlock.c      | 23 +++++--
> MdeModulePkg/Core/Pei/FwVol/FwVol.c                |  9 +++
> MdePkg/Include/Library/HobLib.h                    | 34 +++++++++-
> MdePkg/Include/Pi/PiHob.h                          | 43 ++++++++++++-
> MdePkg/Library/DxeCoreHobLib/HobLib.c              | 35 ++++++++++-
> MdePkg/Library/DxeHobLib/HobLib.c                  | 32 ++++++++++
> MdePkg/Library/PeiHobLib/HobLib.c                  | 54 +++++++++++++++-
> 13 files changed, 371 insertions(+), 47 deletions(-)
>
>--
>2.13.3.windows.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel