From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.43; helo=mga05.intel.com; envelope-from=michael.d.kinney@intel.com; receiver=edk2-devel@lists.01.org Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 70A0B20957458 for ; Tue, 27 Mar 2018 22:26:56 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Mar 2018 22:33:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,369,1517904000"; d="scan'208";a="215356011" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.254.73.52]) by fmsmga006.fm.intel.com with ESMTP; 27 Mar 2018 22:33:32 -0700 From: "Kinney, Michael D" To: edk2-devel@lists.01.org Cc: David Wei , Mang Guo , Jiewen Yao , Michael D Kinney Date: Tue, 27 Mar 2018 22:33:25 -0700 Message-Id: <20180328053330.13272-1-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.14.2.windows.3 Subject: [Patch 0/5] Fix Vlv2TbltDevicePkg build and boot issues X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2018 05:26:57 -0000 https://bugzilla.tianocore.org/show_bug.cgi?id=911 Fix a the following issues * Update build scripts to work when Vlv2Binaries are placed in PACKAGES_PATH * Fix some compiler build breaks when using VS2015 * Remove references to drivers that are not present * Enable the Tianocore boot logo and BGRT table * Enable full UEFI shell * Enable more debug messages in DXE phase * Update PlatformBdsLib to show boot logo when the boot mode is BOOT_ON_FLASH_UPDATE. * Update FLASH libraries to match libraries in the UDK2017 development branch in edk2-platforms. Cc: David Wei Cc: Mang Guo Cc: Jiewen Yao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney Kinney, Michael D (4): Vlv2TbltDevicePkg: Fix VS2015 build breaks Vlv2TbltDevicePkg: Fix build issues in DSC/FDF Vlv2TbltDevicePkg: Display logo on BOOT_ON_FLASH_UPDATE Vlv2TbltDevicePkg: Sync FLASH libraries from UDK2017 branch Michael D Kinney (1): Vlv2TbltDevicePkg: Fix build scripts Vlv2TbltDevicePkg/.gitignore | 3 + Vlv2TbltDevicePkg/Build_IFWI.bat | 8 +- .../PlatformFlashAccessLib.c | 491 ++++++++++++++++++++- .../PlatformFlashAccessLib.inf | 19 +- .../Library/FlashDeviceLib/FlashDeviceLib.c | 158 ++++++- .../Library/FlashDeviceLib/FlashDeviceLib.inf | 6 +- .../Library/FlashDeviceLib/SpiChipDefinitions.h | 1 + .../Library/PlatformBdsLib/BdsPlatform.c | 14 +- Vlv2TbltDevicePkg/PlatformPkg.fdf | 15 +- Vlv2TbltDevicePkg/PlatformPkgGcc.fdf | 17 +- Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc | 12 +- Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 12 +- Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 14 +- .../PlatformSetupDxe/SetupInfoRecords.c | 1 - .../SmBiosMiscDxe/MiscProcessorCacheFunction.c | 6 - Vlv2TbltDevicePkg/Stitch/IFWIStitch.bat | 2 +- .../VlvPlatformInitDxe/VlvPlatformInit.c | 2 +- Vlv2TbltDevicePkg/bld_vlv.bat | 117 ++--- 18 files changed, 775 insertions(+), 123 deletions(-) create mode 100644 Vlv2TbltDevicePkg/.gitignore -- 2.14.2.windows.3