public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 00/11] Remove All UGA support
@ 2022-01-14  0:50 Guomin Jiang
  2022-01-14  0:50 ` [PATCH 01/11] UefiPayloadPkg: Remove All UGA Support Guomin Jiang
                   ` (10 more replies)
  0 siblings, 11 replies; 15+ messages in thread
From: Guomin Jiang @ 2022-01-14  0:50 UTC (permalink / raw)
  To: devel

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

Remove UGA protocol support and only support GOP protocol
GOP is modern graphic protocol of EDK2 and UGA is deprecated in fact.

GuoMinJ (11):
  UefiPayloadPkg: Remove All UGA Support
  ArmVirtPkg: Remove All UGA Support
  ArmPkg: Remove All UGA Support
  EmulatorPkg: Remove All UGA Support
  ShellPkg: Remove All UGA Support
  OvmfPkg: Remove All UGA Support
  MdeModulePkg/ConSplitterDxe: Remove All UGA Support
  MdeModulePkg/GraphicsConsoleDxe: Remove All UGA Support
  MdeModulePkg: Remove All UGA Support
  BaseTools: Remove All UGA Support
  MdePkg: Remove All UGA Support

 MdeModulePkg/MdeModulePkg.dec                 |  14 -
 MdePkg/MdePkg.dec                             |  12 -
 ArmVirtPkg/ArmVirtQemu.dsc                    |   5 -
 ArmVirtPkg/ArmVirtQemuKernel.dsc              |   5 -
 MdePkg/MdePkg.dsc                             |   3 -
 OvmfPkg/AmdSev/AmdSevX64.dsc                  |   2 -
 OvmfPkg/Bhyve/BhyveX64.dsc                    |   2 -
 OvmfPkg/Microvm/MicrovmX64.dsc                |   2 -
 OvmfPkg/OvmfPkgIa32.dsc                       |   2 -
 OvmfPkg/OvmfPkgIa32X64.dsc                    |   2 -
 OvmfPkg/OvmfPkgX64.dsc                        |   2 -
 OvmfPkg/OvmfXen.dsc                           |   2 -
 UefiPayloadPkg/UefiPayloadPkg.dsc             |   2 -
 .../PlatformBootManagerLib.inf                |   3 -
 .../Library/BootLogoLib/BootLogoLib.inf       |   4 -
 .../Console/ConSplitterDxe/ConSplitterDxe.inf |  17 +-
 .../GraphicsConsoleDxe/GraphicsConsoleDxe.inf |   8 +-
 MdePkg/Library/UefiLib/UefiLib.inf            |   2 -
 .../UefiHandleParsingLib.inf                  |   4 +-
 .../PlatformBootManagerLib.inf                |   2 -
 .../PlatformBootManagerLib/PlatformBm.h       |   2 +-
 .../Source/C/Include/Protocol/HiiFramework.h  |  53 +--
 BaseTools/Source/C/Include/Protocol/UgaDraw.h | 161 -------
 EmulatorPkg/EmuGopDxe/Gop.h                   |  10 +-
 EmulatorPkg/Include/Protocol/EmuFileSystem.h  |  24 +-
 .../Include/Protocol/EmuGraphicsWindow.h      |  18 +-
 .../Library/PlatformBmLib/PlatformBm.h        |   4 +-
 EmulatorPkg/Unix/Host/Gasket.h                |  12 +-
 EmulatorPkg/Unix/Host/Host.h                  |   3 +-
 MdeModulePkg/Include/Library/BootLogoLib.h    |   4 +-
 .../Console/ConSplitterDxe/ConSplitter.h      | 138 +-----
 .../GraphicsConsoleDxe/GraphicsConsole.h      |  21 +-
 MdePkg/Include/Protocol/UgaDraw.h             | 159 -------
 MdePkg/Include/Protocol/UgaIo.h               | 189 --------
 MdePkg/Library/UefiLib/UefiLibInternal.h      |   1 -
 .../UefiHandleParsingLib.h                    |   4 +-
 .../PlatformBootManager.h                     |   2 +-
 EmulatorPkg/EmuGopDxe/GopScreen.c             |  16 +-
 .../Library/PlatformBmLib/PlatformBmData.c    |   6 +-
 EmulatorPkg/Unix/Host/X11GraphicsWindow.c     |  82 ++--
 EmulatorPkg/Win/Host/WinGopScreen.c           |  10 +-
 MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.c       |   4 +-
 .../Library/BootLogoLib/BootLogoLib.c         | 228 +++-------
 .../Console/ConSplitterDxe/ConSplitter.c      | 405 +++---------------
 .../ConSplitterDxe/ConSplitterGraphics.c      | 310 +-------------
 .../GraphicsConsoleDxe/GraphicsConsole.c      | 302 +------------
 MdeModulePkg/Universal/HiiDatabaseDxe/Image.c |   4 +-
 MdePkg/Library/UefiLib/UefiLibPrint.c         |  89 ----
 .../UefiHandleParsingLib.c                    |   4 +-
 EmulatorPkg/Unix/Host/Ia32/Gasket.S           |   2 +-
 EmulatorPkg/Unix/Host/X64/Gasket.S            |   2 +-
 MdeModulePkg/MdeModulePkg.uni                 |  12 -
 .../Console/ConSplitterDxe/ConSplitterDxe.uni |  12 +-
 .../GraphicsConsoleDxe/GraphicsConsoleDxe.uni |   6 +-
 MdePkg/MdePkg.uni                             |   6 -
 .../UefiHandleParsingLib.uni                  |   4 +-
 56 files changed, 264 insertions(+), 2140 deletions(-)
 delete mode 100644 BaseTools/Source/C/Include/Protocol/UgaDraw.h
 delete mode 100644 MdePkg/Include/Protocol/UgaDraw.h
 delete mode 100644 MdePkg/Include/Protocol/UgaIo.h

-- 
2.30.0.windows.2


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

end of thread, other threads:[~2022-01-31 14:27 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-14  0:50 [PATCH 00/11] Remove All UGA support Guomin Jiang
2022-01-14  0:50 ` [PATCH 01/11] UefiPayloadPkg: Remove All UGA Support Guomin Jiang
2022-01-17 18:05   ` Guo Dong
2022-01-14  0:50 ` [PATCH 02/11] ArmVirtPkg: " Guomin Jiang
2022-01-29 16:18   ` Ard Biesheuvel
2022-01-31 14:27     ` Leif Lindholm
2022-01-14  0:50 ` [PATCH 03/11] ArmPkg: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 04/11] EmulatorPkg: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 05/11] ShellPkg: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 06/11] OvmfPkg: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 07/11] MdeModulePkg/ConSplitterDxe: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 08/11] MdeModulePkg/GraphicsConsoleDxe: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 09/11] MdeModulePkg: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 10/11] BaseTools: " Guomin Jiang
2022-01-14  0:50 ` [PATCH 11/11] MdePkg: " Guomin Jiang

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