public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch 00/16] Vlv2TbltDevicePkg: Sync with edk2/master
@ 2019-05-09  4:30 Michael D Kinney
  2019-05-09  4:30 ` [Patch 01/16] Vlv2TbltDevicePkg/PlatformFlashAccessLib: Add error return Michael D Kinney
                   ` (16 more replies)
  0 siblings, 17 replies; 51+ messages in thread
From: Michael D Kinney @ 2019-05-09  4:30 UTC (permalink / raw)
  To: devel; +Cc: Zailiang Sun, Yi Qian

Fix a number of small issues for MinnowMax to build and boot with latest
edk2/master and to prepare MinnowMax for move to edk2-platforms/master.
 
Cc: Zailiang Sun <zailiang.sun@intel.com>
Cc: Yi Qian <yi.qian@intel.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>

Michael D Kinney (16):
  Vlv2TbltDevicePkg/PlatformFlashAccessLib: Add error return
  Vlv2TbltDevicePkg/AcpiPlatform: Change Size type to UINTN
  Vlv2TbltDevicePkg/AcpiPlatform: Add variable protocols to depex
  Vlv2TbltDevicePkg/PpmPolicy: Fix call to MP Services Protocol
  Vlv2TbltDevicePkg/SmBiosMiscDxe: Fix GCC build issue
  Vlv2TbltDevicePkg: Find UEFI Shell using gUefiShellFileGuid
  Vlv2TbltDevicePkg: Build full UEFI Shell from sources
  Vlv2TbltDevicePkg: Use CpuDxe from UefiCpuPkg
  Vlv2TbltDevicePkg: Add PchInitSmm module
  Vlv2TbltDevicePkg: Always enable QuietBoot to produce BGRT
  Vlv2TbltDevicePkg/Stitch/Gcc: Update default setting binary
  Vlv2TbltDevicePkg: Remove directory assumptions from build scripts
  Vlv2TbltDevicePkg/Capsule: Do not clear UEFI varstore
  Vlv2TbltDevicePkg/Capsule: Remove path to openssl tools
  Vlv2TbltDevicePkg/Capsule: Add Linux/LVFS generation scripts
  Vlv2TbltDevicePkg: Update Readme.md

 Vlv2TbltDevicePkg/.gitignore                  |   2 +
 Vlv2TbltDevicePkg/AcpiPlatform/AcpiPlatform.c |   6 +-
 .../AcpiPlatform/AcpiPlatform.inf             |  10 +-
 Vlv2TbltDevicePkg/Build_IFWI.bat              |  31 ++-
 .../Capsule/GenerateCapsule/GenCapsuleAll.bat |  12 +-
 .../Capsule/GenerateCapsule/GenCapsuleAll.sh  |  28 +++
 .../GenerateCapsule/GenCapsuleMinnowMax.bat   |   6 +-
 .../GenerateCapsule/GenCapsuleMinnowMax.sh    |  65 +++++
 .../GenCapsuleMinnowMaxRelease.bat            |   6 +-
 .../GenCapsuleMinnowMaxRelease.sh             |  65 +++++
 .../GenerateCapsule/GenCapsuleSampleColor.bat |   2 -
 .../GenerateCapsule/GenCapsuleSampleColor.sh  |  70 ++++++
 .../Feature/Capsule/GenerateCapsule/Lvfs.ddf  |  14 ++
 .../LvfsGenCapsuleMinnowMax.bat               | 139 +++++++++++
 .../LvfsGenCapsuleMinnowMaxRelease.bat        | 139 +++++++++++
 .../LvfsGenCapsuleSampleColor.bat             | 145 +++++++++++
 .../GenerateCapsule/template.metainfo.xml     |  27 ++
 .../Library/FmpDeviceLib/FmpDeviceLib.c       |   7 +-
 .../PlatformFlashAccessLib.c                  |   6 +-
 .../Library/PlatformBdsLib/BdsPlatform.c      |  23 +-
 .../Library/PlatformBdsLib/PlatformBdsLib.inf |  10 +-
 .../Library/GenericBdsLib/BdsBoot.c           |   8 +-
 .../Library/GenericBdsLib/GenericBdsLib.inf   |   5 +-
 Vlv2TbltDevicePkg/PlatformCapsuleGcc.dsc      |  38 +++
 Vlv2TbltDevicePkg/PlatformPkg.fdf             |   3 +-
 Vlv2TbltDevicePkg/PlatformPkgGcc.fdf          |  10 +-
 Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc       |  31 ++-
 Vlv2TbltDevicePkg/PlatformPkgIA32.dsc         |  31 ++-
 Vlv2TbltDevicePkg/PlatformPkgX64.dsc          |  30 ++-
 Vlv2TbltDevicePkg/PpmPolicy/PpmPolicy.c       |   5 +-
 Vlv2TbltDevicePkg/Readme.md                   | 232 ++++++++++++++----
 ...MiscNumberOfInstallableLanguagesFunction.c |  10 +-
 .../Stitch/Gcc/NvStorageVariable.bin          | Bin 253952 -> 253952 bytes
 Vlv2TbltDevicePkg/Stitch/IFWIStitch.bat       |  23 +-
 Vlv2TbltDevicePkg/bldX64.bat                  | 216 ----------------
 Vlv2TbltDevicePkg/bld_vlv.bat                 | 129 ++++++----
 Vlv2TbltDevicePkg/bld_vlv.sh                  |   3 +-
 37 files changed, 1194 insertions(+), 393 deletions(-)
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleAll.sh
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleMinnowMax.sh
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleMinnowMaxRelease.sh
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/GenCapsuleSampleColor.sh
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/Lvfs.ddf
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/LvfsGenCapsuleMinnowMax.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/LvfsGenCapsuleMinnowMaxRelease.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/LvfsGenCapsuleSampleColor.bat
 create mode 100644 Vlv2TbltDevicePkg/Feature/Capsule/GenerateCapsule/template.metainfo.xml
 create mode 100644 Vlv2TbltDevicePkg/PlatformCapsuleGcc.dsc
 delete mode 100644 Vlv2TbltDevicePkg/bldX64.bat

-- 
2.21.0.windows.1


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

end of thread, other threads:[~2019-05-09 13:21 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-09  4:30 [Patch 00/16] Vlv2TbltDevicePkg: Sync with edk2/master Michael D Kinney
2019-05-09  4:30 ` [Patch 01/16] Vlv2TbltDevicePkg/PlatformFlashAccessLib: Add error return Michael D Kinney
2019-05-09  7:53   ` Sun, Zailiang
2019-05-09  7:53   ` Sun, Zailiang
2019-05-09 13:18   ` Qian, Yi
2019-05-09  4:30 ` [Patch 02/16] Vlv2TbltDevicePkg/AcpiPlatform: Change Size type to UINTN Michael D Kinney
2019-05-09  8:15   ` Sun, Zailiang
2019-05-09 13:19   ` Qian, Yi
2019-05-09  4:30 ` [Patch 03/16] Vlv2TbltDevicePkg/AcpiPlatform: Add variable protocols to depex Michael D Kinney
2019-05-09  7:53   ` Sun, Zailiang
2019-05-09 13:18   ` Qian, Yi
2019-05-09  4:30 ` [Patch 04/16] Vlv2TbltDevicePkg/PpmPolicy: Fix call to MP Services Protocol Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:19   ` Qian, Yi
2019-05-09  4:31 ` [Patch 05/16] Vlv2TbltDevicePkg/SmBiosMiscDxe: Fix GCC build issue Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:19   ` Qian, Yi
2019-05-09  4:31 ` [Patch 06/16] Vlv2TbltDevicePkg: Find UEFI Shell using gUefiShellFileGuid Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:19   ` Qian, Yi
2019-05-09  4:31 ` [Patch 07/16] Vlv2TbltDevicePkg: Build full UEFI Shell from sources Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:19   ` Qian, Yi
2019-05-09  4:31 ` [Patch 08/16] Vlv2TbltDevicePkg: Use CpuDxe from UefiCpuPkg Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:18   ` Qian, Yi
2019-05-09  4:31 ` [Patch 09/16] Vlv2TbltDevicePkg: Add PchInitSmm module Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:20   ` Qian, Yi
2019-05-09  4:31 ` [Patch 10/16] Vlv2TbltDevicePkg: Always enable QuietBoot to produce BGRT Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:20   ` Qian, Yi
2019-05-09  4:31 ` [Patch 11/16] Vlv2TbltDevicePkg/Stitch/Gcc: Update default setting binary Michael D Kinney
2019-05-09  7:54   ` Sun, Zailiang
2019-05-09 13:20   ` Qian, Yi
2019-05-09  4:31 ` [Patch 12/16] Vlv2TbltDevicePkg: Remove directory assumptions from build scripts Michael D Kinney
2019-05-09  7:55   ` Sun, Zailiang
2019-05-09 13:21   ` Qian, Yi
2019-05-09  4:31 ` [Patch 13/16] Vlv2TbltDevicePkg/Capsule: Do not clear UEFI varstore Michael D Kinney
2019-05-09  7:55   ` Sun, Zailiang
2019-05-09 13:20   ` Qian, Yi
2019-05-09  4:31 ` [Patch 14/16] Vlv2TbltDevicePkg/Capsule: Remove path to openssl tools Michael D Kinney
2019-05-09  7:55   ` Sun, Zailiang
2019-05-09 13:20   ` Qian, Yi
2019-05-09  4:31 ` [Patch 15/16] Vlv2TbltDevicePkg/Capsule: Add Linux/LVFS generation scripts Michael D Kinney
2019-05-09  7:55   ` Sun, Zailiang
2019-05-09 13:21   ` Qian, Yi
2019-05-09  4:31 ` [Patch 16/16] Vlv2TbltDevicePkg: Update Readme.md Michael D Kinney
2019-05-09  7:58   ` Sun, Zailiang
2019-05-09 13:21   ` Qian, Yi
2019-05-09 13:18 ` [Patch 00/16] Vlv2TbltDevicePkg: Sync with edk2/master Qian, Yi

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