public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Guomin Jiang" <guomin.jiang@intel.com>
To: devel@edk2.groups.io
Subject: [PATCH 00/11] Remove All UGA support
Date: Fri, 14 Jan 2022 08:50:33 +0800	[thread overview]
Message-ID: <20220114005044.1975-1-guomin.jiang@intel.com> (raw)

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


             reply	other threads:[~2022-01-14  0:51 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-14  0:50 Guomin Jiang [this message]
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

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=20220114005044.1975-1-guomin.jiang@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