public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch 0/4] Vlv2TbltDevicePkg: Add FmpDevicePkg support
@ 2018-08-10  1:28 Michael D Kinney
  2018-08-10  1:28 ` [Patch 1/4] Vlv2TbltDevicePkg/Override/Bds: Add test key notification Michael D Kinney
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Michael D Kinney @ 2018-08-10  1:28 UTC (permalink / raw)
  To: edk2-devel; +Cc: David Wei, Mang Guo

Update Vlv2TbltDevicePkg to build UEFI capsules for system firmare and device
firmware using the GenerateCapsule tool and use the FmpDevicePkg to implement
drivers that produce the Firmware Management Protocol to process UEFI capsules.

* Update Vlv2TbltDevicePkg specific BDS to notify when test key is detected.
* Add FmpDeviceLib instance for Minnow Max FLASH update
* Add FmpDeviceLib instance for sample devices
* Add scripts to generate UEFI Capsules for system and device firmware
* Update Vlv2TbltDevicePkg DSC/FDF to use FmpDevicePkg

Cc: David Wei <david.wei@intel.com>
Cc: Mang Guo <mang.guo@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>

Kinney, Michael D (1):
  Vlv2TbltDevicePkg/Override/Bds: Add test key notification

Michael D Kinney (3):
  Vlv2TbltDevicePkg/Feature/Capsule: Add FmpDeviceLib instances
  Vlv2TbltDevicePkg/Capsule: Add scripts to generate capsules
  Vlv2TbltDevicePkg: Update DSC/FDF to use FmpDevicePkg

 .../Capsule/GenerateCapsule/GenCapsuleAll.bat      |  35 ++
 .../GenerateCapsule/GenCapsuleMinnowMax.bat        | 139 +++++
 .../GenerateCapsule/GenCapsuleMinnowMaxRelease.bat | 139 +++++
 .../GenerateCapsule/GenCapsuleSampleColor.bat      | 145 +++++
 ...kenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc |   1 +
 ...kenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc |   1 +
 ...kenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc |   1 +
 .../Capsule/Library/FmpDeviceLib/FmpDeviceLib.c    | 607 +++++++++++++++++++++
 .../Capsule/Library/FmpDeviceLib/FmpDeviceLib.inf  |  63 +++
 .../Library/FmpDeviceLibSample/FmpDeviceLib.c      | 429 +++++++++++++++
 .../Library/FmpDeviceLibSample/FmpDeviceLib.inf    |  51 ++
 Vlv2TbltDevicePkg/FmpBlueSampleDevice.dsc          |  61 +++
 Vlv2TbltDevicePkg/FmpCertificate.dsc               |  28 +
 Vlv2TbltDevicePkg/FmpGreenSampleDevice.dsc         |  61 +++
 Vlv2TbltDevicePkg/FmpMinnowMaxSystem.dsc           |  65 +++
 Vlv2TbltDevicePkg/FmpRedSampleDevice.dsc           |  61 +++
 .../Library/GenericBdsLib/BdsConsole.c             |  11 +
 .../Library/GenericBdsLib/GenericBdsLib.inf        |   1 +
 Vlv2TbltDevicePkg/PlatformCapsule.dsc              |   1 +
 Vlv2TbltDevicePkg/PlatformCapsule.fdf              |  23 -
 Vlv2TbltDevicePkg/PlatformCapsuleGcc.fdf           |  23 -
 Vlv2TbltDevicePkg/PlatformPkg.dec                  |   5 +
 Vlv2TbltDevicePkg/PlatformPkg.fdf                  |  61 +--
 Vlv2TbltDevicePkg/PlatformPkgConfig.dsc            |  19 +-
 Vlv2TbltDevicePkg/PlatformPkgGcc.fdf               |  61 +--
 Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc            |  66 +--
 Vlv2TbltDevicePkg/PlatformPkgIA32.dsc              |  64 +--
 Vlv2TbltDevicePkg/PlatformPkgX64.dsc               |  62 +--
 28 files changed, 2032 insertions(+), 252 deletions(-)
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleAll.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleMinnowMax.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleMinnowMaxRelease.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleSampleColor.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/NewRoot.cer.gFmpDevicePkgTokenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/SAMPLE_DEVELOPMENT.cer.gFmpDevicePkgTokenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/SAMPLE_DEVELOPMENT_SAMPLE_PRODUCTION.cer.gFmpDevicePkgTokenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/Library/FmpDeviceLib/FmpDeviceLib.c
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/Library/FmpDeviceLib/FmpDeviceLib.inf
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/Library/FmpDeviceLibSample/FmpDeviceLib.c
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/Library/FmpDeviceLibSample/FmpDeviceLib.inf
 create mode 100644 Vlv2TbltDevicePkg/FmpBlueSampleDevice.dsc
 create mode 100644 Vlv2TbltDevicePkg/FmpCertificate.dsc
 create mode 100644 Vlv2TbltDevicePkg/FmpGreenSampleDevice.dsc
 create mode 100644 Vlv2TbltDevicePkg/FmpMinnowMaxSystem.dsc
 create mode 100644 Vlv2TbltDevicePkg/FmpRedSampleDevice.dsc

-- 
2.14.2.windows.3



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-08-14 18:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-10  1:28 [Patch 0/4] Vlv2TbltDevicePkg: Add FmpDevicePkg support Michael D Kinney
2018-08-10  1:28 ` [Patch 1/4] Vlv2TbltDevicePkg/Override/Bds: Add test key notification Michael D Kinney
2018-08-10  1:28 ` [Patch 2/4] Vlv2TbltDevicePkg/Feature/Capsule: Add FmpDeviceLib instances Michael D Kinney
2018-08-10  1:28 ` [Patch 3/4] Vlv2TbltDevicePkg/Capsule: Add scripts to generate capsules Michael D Kinney
2018-08-10  1:28 ` [Patch 4/4] Vlv2TbltDevicePkg: Update DSC/FDF to use FmpDevicePkg Michael D Kinney
2018-08-10  6:25 ` [Patch 0/4] Vlv2TbltDevicePkg: Add FmpDevicePkg support Guo, Mang
2018-08-14 14:59   ` Laszlo Ersek
2018-08-14 18:32     ` Kinney, Michael D

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox