From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: michael.d.kinney@intel.com) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by groups.io with SMTP; Wed, 08 May 2019 21:31:16 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 May 2019 21:31:16 -0700 X-ExtLoop1: 1 Received: from unknown (HELO mdkinney-MOBL2.amr.corp.intel.com) ([10.241.98.74]) by orsmga004.jf.intel.com with ESMTP; 08 May 2019 21:31:16 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Zailiang Sun , Yi Qian Subject: [Patch 00/16] Vlv2TbltDevicePkg: Sync with edk2/master Date: Wed, 8 May 2019 21:30:55 -0700 Message-Id: <20190509043111.15272-1-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Cc: Yi Qian Signed-off-by: Michael D Kinney 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