[edk2] [PATCH v1 0/4] edk2-platforms:Comcast:Rdk Qemu platform for RDK UEFI applications

kalyan-nagabhirava posted 4 patches 6 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/edk2 tags/patchew/20180108054513.2279-1-kalyankumar.nagabhirava@linaro.org
Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.dec       |  50 ++
Platform/Comcast/RDKQemu/RDKQemu.dsc                                   | 431 +++++++++++++++++
Platform/Comcast/RDKQemu/RDKQemu.fdf                                   | 128 +++++
Platform/Comcast/Application/Dri/Dri.inf                               |  56 +++
Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.inf           |  57 +++
Platform/Comcast/Application/SecureBoot/SecureBoot.inf                 |  57 +++
Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.inf       |  79 +++
Platform/Comcast/Library/RdkBootManagerLib/Include/DiskIo.h            |  20 +
Platform/Comcast/Library/RdkBootManagerLib/Include/HttpBoot.h          |   7 +
Platform/Comcast/Library/RdkBootManagerLib/Include/List.h              |  52 ++
Platform/Comcast/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h |  31 ++
Platform/Comcast/Library/RdkBootManagerLib/Include/RdkFile.h           |  20 +
Platform/Comcast/Library/RdkBootManagerLib/Include/SecureBoot.h        |  40 ++
Platform/Comcast/Application/Dri/Dri.c                                 |  26 +
Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.c             |  32 ++
Platform/Comcast/Application/SecureBoot/SecureBoot.c                   |  30 ++
Platform/Comcast/Library/RdkBootManagerLib/DiskIo.c                    | 358 ++++++++++++++
Platform/Comcast/Library/RdkBootManagerLib/HttpBoot.c                  | 323 +++++++++++++
Platform/Comcast/Library/RdkBootManagerLib/RdkFile.c                   | 345 +++++++++++++
Platform/Comcast/Library/RdkBootManagerLib/SecureBoot.c                | 506 ++++++++++++++++++++
Platform/Comcast/RDKQemu/README                                        |  77 +++
21 files changed, 2725 insertions(+)
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.dec
create mode 100644 Platform/Comcast/RDKQemu/RDKQemu.dsc
create mode 100644 Platform/Comcast/RDKQemu/RDKQemu.fdf
create mode 100644 Platform/Comcast/Application/Dri/Dri.inf
create mode 100644 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.inf
create mode 100644 Platform/Comcast/Application/SecureBoot/SecureBoot.inf
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.inf
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/DiskIo.h
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/HttpBoot.h
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/List.h
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkFile.h
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/SecureBoot.h
create mode 100644 Platform/Comcast/Application/Dri/Dri.c
create mode 100644 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.c
create mode 100644 Platform/Comcast/Application/SecureBoot/SecureBoot.c
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/DiskIo.c
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/HttpBoot.c
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkFile.c
create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/SecureBoot.c
create mode 100644 Platform/Comcast/RDKQemu/README
[edk2] [PATCH v1 0/4] edk2-platforms:Comcast:Rdk Qemu platform for RDK UEFI applications
Posted by kalyan-nagabhirava 6 years, 2 months ago
Linaro and RDK are  working on standardizing the boot process for RDK  STB boxes using Uefi.
we implmented couple of RDK UEFI apllications(secure boot and DRI ) which are  tested on
RDK qemu platform.

kalyan-nagabhirava (4):
  edk2-platforms: created Rdk Qemu platform for RDK UEFI applications
  edk2-platforms:comcast: RDK boot manger Library implementation
  edk2-platforms:comcast: RDK secure boot Application
  edk2-platforms:comcast: RDK DRI Application

 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.dec       |  50 ++
 Platform/Comcast/RDKQemu/RDKQemu.dsc                                   | 431 +++++++++++++++++
 Platform/Comcast/RDKQemu/RDKQemu.fdf                                   | 128 +++++
 Platform/Comcast/Application/Dri/Dri.inf                               |  56 +++
 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.inf           |  57 +++
 Platform/Comcast/Application/SecureBoot/SecureBoot.inf                 |  57 +++
 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.inf       |  79 +++
 Platform/Comcast/Library/RdkBootManagerLib/Include/DiskIo.h            |  20 +
 Platform/Comcast/Library/RdkBootManagerLib/Include/HttpBoot.h          |   7 +
 Platform/Comcast/Library/RdkBootManagerLib/Include/List.h              |  52 ++
 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h |  31 ++
 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkFile.h           |  20 +
 Platform/Comcast/Library/RdkBootManagerLib/Include/SecureBoot.h        |  40 ++
 Platform/Comcast/Application/Dri/Dri.c                                 |  26 +
 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.c             |  32 ++
 Platform/Comcast/Application/SecureBoot/SecureBoot.c                   |  30 ++
 Platform/Comcast/Library/RdkBootManagerLib/DiskIo.c                    | 358 ++++++++++++++
 Platform/Comcast/Library/RdkBootManagerLib/HttpBoot.c                  | 323 +++++++++++++
 Platform/Comcast/Library/RdkBootManagerLib/RdkFile.c                   | 345 +++++++++++++
 Platform/Comcast/Library/RdkBootManagerLib/SecureBoot.c                | 506 ++++++++++++++++++++
 Platform/Comcast/RDKQemu/README                                        |  77 +++
 21 files changed, 2725 insertions(+)
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.dec
 create mode 100644 Platform/Comcast/RDKQemu/RDKQemu.dsc
 create mode 100644 Platform/Comcast/RDKQemu/RDKQemu.fdf
 create mode 100644 Platform/Comcast/Application/Dri/Dri.inf
 create mode 100644 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.inf
 create mode 100644 Platform/Comcast/Application/SecureBoot/SecureBoot.inf
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.inf
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/DiskIo.h
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/HttpBoot.h
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/List.h
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkFile.h
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/SecureBoot.h
 create mode 100644 Platform/Comcast/Application/Dri/Dri.c
 create mode 100644 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.c
 create mode 100644 Platform/Comcast/Application/SecureBoot/SecureBoot.c
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/DiskIo.c
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/HttpBoot.c
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkFile.c
 create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/SecureBoot.c
 create mode 100644 Platform/Comcast/RDKQemu/README

-- 
2.15.0

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