public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [patch V2 0/7] Move BaseUefiTianoCustomDecompressLib from IntelFrameworkModulePkg to MdeModulePkg
@ 2019-04-08  5:40 Dandan Bi
  2019-04-08  5:40 ` [patch V2 1/7] ArmVirtPkg: Update UefiDecompressLib instance Dandan Bi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Dandan Bi @ 2019-04-08  5:40 UTC (permalink / raw)
  To: devel
  Cc: Laszlo Ersek, Julien Grall, Leif Lindholm, Ard Biesheuvel,
	Jordan Justen, Andrew Fish, Liming Gao, Ray Ni, Jian J Wang,
	Hao Wu, Michael D Kinney, Kelly Steele, Zailiang Sun, Yi Qian

V2: 
Patch 1 and patch 2: Use a common UefiDecompressLib resolution in
[LibraryClasses.common] section and drop all the others.
Other patches are the same with V1.

We will remove IntelFrameworkModulePkg,but BaseUefiTianoCustomDecompressLib in it
may still need to be used. So move BaseUefiTianoCustomDecompressLib from
IntelFrameworkModulePkg to MdeModulePkg firstly.

Patch 1-3 are to clean up platform unnecessary dependency on BaseUefiTianoCustomDecompressLib
in IntelFrameworkModulePkg before the move.
Patch 4 is to move the BaseUefiTianoCustomDecompressLib from IntelFrameworkModulePkg to MdeModulePkg.
Patch 5-7 are to update the consumer to use the BaseUefiTianoCustomDecompressLib in MdeModulePkg after the move.

Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Julien Grall <julien.grall@arm.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Andrew Fish <afish@apple.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Hao Wu <hao.a.wu@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>
Dandan Bi (7):
  ArmVirtPkg: Update UefiDecompressLib instance
  BeagleBoardPkg: Update UefiDecompressLib instance
  EmulatorPkg: Update UefiDecompressLib instance
  MdeModulePkg: Move BaseUefiTianoCustomDecompressLib to
  Nt32Pkg: Update to use UefiDecompressLib in MdeModulePkg
  Quark: Update to use UefiDecompressLib in MdeModulePkg
  Vlv2TbltDevicePkg: Update to use UefiDecompressLib in MdeModulePkg

 ArmVirtPkg/ArmVirt.dsc.inc                               | 5 -----
 ArmVirtPkg/ArmVirtRules.fdf.inc                          | 9 ---------
 BeagleBoardPkg/BeagleBoardPkg.dsc                        | 6 ++----
 BeagleBoardPkg/BeagleBoardPkg.fdf                        | 9 ---------
 EmulatorPkg/EmulatorPkg.dsc                              | 2 +-
 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec      | 4 ----
 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dsc      | 1 -
 .../Include/Guid/TianoDecompress.h                       | 0
 .../BaseUefiTianoCustomDecompressLib.c                   | 0
 .../BaseUefiTianoCustomDecompressLib.inf                 | 2 +-
 .../BaseUefiTianoCustomDecompressLibInternals.h          | 0
 .../BaseUefiTianoDecompressLib.uni                       | 0
 MdeModulePkg/MdeModulePkg.dec                            | 4 ++++
 MdeModulePkg/MdeModulePkg.dsc                            | 1 +
 Nt32Pkg/Nt32Pkg.dsc                                      | 2 +-
 QuarkPlatformPkg/Quark.dsc                               | 2 +-
 QuarkPlatformPkg/QuarkMin.dsc                            | 2 +-
 Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc                  | 2 +-
 Vlv2TbltDevicePkg/PlatformPkgIA32.dsc                    | 2 +-
 Vlv2TbltDevicePkg/PlatformPkgX64.dsc                     | 2 +-
 20 files changed, 15 insertions(+), 40 deletions(-)
 rename {IntelFrameworkModulePkg => MdeModulePkg}/Include/Guid/TianoDecompress.h (100%)
 rename {IntelFrameworkModulePkg => MdeModulePkg}/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.c (100%)
 rename {IntelFrameworkModulePkg => MdeModulePkg}/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf (94%)
 rename {IntelFrameworkModulePkg => MdeModulePkg}/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLibInternals.h (100%)
 rename {IntelFrameworkModulePkg => MdeModulePkg}/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoDecompressLib.uni (100%)

-- 
2.18.0.windows.1


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

end of thread, other threads:[~2019-04-10  2:34 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-08  5:40 [patch V2 0/7] Move BaseUefiTianoCustomDecompressLib from IntelFrameworkModulePkg to MdeModulePkg Dandan Bi
2019-04-08  5:40 ` [patch V2 1/7] ArmVirtPkg: Update UefiDecompressLib instance Dandan Bi
2019-04-08  9:54   ` Laszlo Ersek
2019-04-08  5:40 ` [patch V2 2/7] BeagleBoardPkg: " Dandan Bi
2019-04-08  5:40 ` [patch V2 3/7] EmulatorPkg: " Dandan Bi
2019-04-08  6:03   ` Ni, Ray
2019-04-08  5:40 ` [patch V2 4/7] MdeModulePkg: Move BaseUefiTianoCustomDecompressLib to Dandan Bi
2019-04-08  6:49   ` Wu, Hao A
2019-04-08  5:40 ` [patch V2 5/7] Nt32Pkg: Update to use UefiDecompressLib in MdeModulePkg Dandan Bi
2019-04-08  6:16   ` Wu, Hao A
2019-04-08  5:40 ` [patch V2 6/7] Quark: " Dandan Bi
2019-04-10  2:34   ` [edk2-devel] " Liming Gao
2019-04-08  5:40 ` [patch V2 7/7] Vlv2TbltDevicePkg: " Dandan Bi
2019-04-09  7:31   ` Sun, Zailiang

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