public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Dandan Bi" <dandan.bi@intel.com>
To: devel@edk2.groups.io
Cc: Bob Feng <bob.c.feng@intel.com>,
	Liming Gao <liming.gao@intel.com>, Ray Ni <ray.ni@intel.com>,
	Hao Wu <hao.a.wu@intel.com>, Eric Dong <eric.dong@intel.com>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Kelly Steele <kelly.steele@intel.com>,
	Zailiang Sun <zailiang.sun@intel.com>,
	Yi Qian <yi.qian@intel.com>, Laszlo Ersek <lersek@redhat.com>,
	Jiewen Yao <jiewen.yao@intel.com>,
	Chao, Jian J Wang <jian.j.wang@intel.com>
Subject: [patch 00/11] Remove PcdFrameworkCompatibilitySupport
Date: Mon, 29 Apr 2019 10:15:56 +0800	[thread overview]
Message-ID: <20190429021607.11304-1-dandan.bi@intel.com> (raw)

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1464

Patch 1-10 remove usage of PcdFrameworkCompatibilitySupport.
patch 11 remove PcdFrameworkCompatibilitySupport

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Hao Wu <hao.a.wu@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Cc: Zailiang Sun <zailiang.sun@intel.com>
Cc: Yi Qian <yi.qian@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Chao Zhang <chao.b.zhang@intel.com
Cc: Jian J Wang <jian.j.wang@intel.com>
Dandan Bi (11):
  BaseTools/VfrCompile: Remove framework VFR support
  FatPkg/FatPei: Remove PcdFrameworkCompatibilitySupport usage
  IntelFrameworkModulePkg: Remove PcdFrameworkCompatibilitySupport usage
  MdeModulePkg/Core: Remove PcdFrameworkCompatibilitySupport usage
  MdeModulePkg/CdExpress: Remove PcdFrameworkCompatibilitySupport usage
  MdeModulePkg/Setup: Remove PcdFrameworkCompatibilitySupport usage
  QuarkPlatformPkg: Remove PcdFrameworkCompatibilitySupport usage
  SignedCapsulePkg: Remove PcdFrameworkCompatibilitySupport usage
  UefiCpuPkg: Remove PcdFrameworkCompatibilitySupport usage
  Vlv2TbltDevicePkg: Remove PcdFrameworkCompatibilitySupport usage
  MdeModulePkg: Remove PcdFrameworkCompatibilitySupport

 BaseTools/Source/C/VfrCompile/VfrCompiler.cpp |  35 +----
 BaseTools/Source/C/VfrCompile/VfrCompiler.h   |   3 +-
 BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp  |  23 +--
 BaseTools/Source/C/VfrCompile/VfrFormPkg.h    |   3 +-
 BaseTools/Source/C/VfrCompile/VfrSyntax.g     | 103 +-------------
 .../Source/C/VfrCompile/VfrUtilityLib.cpp     |  52 +------
 BaseTools/Source/C/VfrCompile/VfrUtilityLib.h |   7 +-
 .../VfrCompiler_Utility_Man_Page.rtf          |   4 -
 FatPkg/FatPei/FatLiteApi.c                    |  10 +-
 FatPkg/FatPei/FatPei.inf                      |   4 -
 .../Universal/Acpi/AcpiS3SaveDxe/AcpiS3Save.c |  10 +-
 .../Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf      |   3 +-
 MdeModulePkg/Core/Dxe/DxeMain.inf             |   6 +-
 MdeModulePkg/Core/Dxe/Image/Image.c           | 132 +-----------------
 MdeModulePkg/Core/Dxe/Image/Image.h           |  85 +----------
 MdeModulePkg/Core/Pei/FwVol/FwVol.c           |  65 ---------
 MdeModulePkg/Core/Pei/PeiMain.inf             |   1 -
 MdeModulePkg/MdeModulePkg.dec                 |   8 --
 MdeModulePkg/MdeModulePkg.uni                 |   6 -
 .../Disk/CdExpressPei/CdExpressPei.inf        |   5 +-
 .../Disk/CdExpressPei/PeiCdExpress.c          |  10 +-
 .../Universal/SetupBrowserDxe/IfrParse.c      |  86 +-----------
 .../SetupBrowserDxe/SetupBrowserDxe.inf       |   6 +-
 .../Pei/PlatformInit/Generic/Recovery.c       |  50 ++-----
 .../Pei/PlatformInit/PlatformEarlyInit.inf    |   3 +-
 .../RecoveryModuleLoadPei.c                   |   6 +-
 .../RecoveryModuleLoadPei.inf                 |   5 +-
 .../Universal/Acpi/S3Resume2Pei/S3Resume.c    |  30 ----
 .../Acpi/S3Resume2Pei/S3Resume2Pei.inf        |   3 +-
 Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc       |   3 +-
 Vlv2TbltDevicePkg/PlatformPkgIA32.dsc         |   3 +-
 Vlv2TbltDevicePkg/PlatformPkgX64.dsc          |   3 +-
 32 files changed, 48 insertions(+), 725 deletions(-)

-- 
2.18.0.windows.1


             reply	other threads:[~2019-04-29  2:16 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-29  2:15 Dandan Bi [this message]
2019-04-29  2:15 ` [patch 01/11] BaseTools/VfrCompile: Remove framework VFR support Dandan Bi
2019-05-07  5:52   ` [edk2-devel] " Bob Feng
2019-05-07  6:00   ` Liming Gao
2019-04-29  2:15 ` [patch 02/11] FatPkg/FatPei: Remove PcdFrameworkCompatibilitySupport usage Dandan Bi
2019-05-05  3:25   ` [edk2-devel] " Ni, Ray
2019-04-29  2:15 ` [patch 03/11] IntelFrameworkModulePkg: " Dandan Bi
2019-05-07  5:59   ` Liming Gao
2019-04-29  2:16 ` [patch 04/11] MdeModulePkg/Core: " Dandan Bi
2019-05-06  1:22   ` [edk2-devel] " Wu, Hao A
2019-05-06  2:48     ` Dandan Bi
2019-05-06  2:54       ` Wu, Hao A
2019-05-07  7:08         ` Dandan Bi
2019-05-08  8:23           ` Liming Gao
2019-04-29  2:16 ` [patch 05/11] MdeModulePkg/CdExpress: " Dandan Bi
2019-05-06  1:05   ` Wu, Hao A
2019-04-29  2:16 ` [patch 06/11] MdeModulePkg/Setup: " Dandan Bi
2019-05-07  6:13   ` Dong, Eric
2019-04-29  2:16 ` [patch 07/11] QuarkPlatformPkg: " Dandan Bi
2019-05-07  5:58   ` [edk2-devel] " Liming Gao
2019-04-29  2:16 ` [patch 08/11] SignedCapsulePkg: " Dandan Bi
2019-04-29  2:16 ` [patch 09/11] UefiCpuPkg: " Dandan Bi
2019-04-29 15:15   ` Laszlo Ersek
2019-04-29  2:16 ` [patch 10/11] Vlv2TbltDevicePkg: " Dandan Bi
2019-05-07  8:35   ` Sun, Zailiang
2019-04-29  2:16 ` [patch 11/11] MdeModulePkg: Remove PcdFrameworkCompatibilitySupport Dandan Bi
2019-05-06  1:25   ` Wu, Hao A
     [not found] ` <1599D055711F0B7C.4588@groups.io>
     [not found]   ` <3C0D5C461C9E904E8F62152F6274C0BB40BD01BF@SHSMSX104.ccr.corp.intel.com>
2019-05-07  6:02     ` [edk2-devel] [patch 08/11] SignedCapsulePkg: Remove PcdFrameworkCompatibilitySupport usage Yao, Jiewen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190429021607.11304-1-dandan.bi@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox