[edk2-devel] [Patch v2 00/11] Remove all UGA support

Guomin Jiang posted 11 patches 1 year, 9 months ago
Failed in applying to current master (apply log)
.../PlatformBootManagerLib/PlatformBm.h       |   4 +-
.../PlatformBootManagerLib.inf                |   5 +-
ArmVirtPkg/ArmVirtQemu.dsc                    |   7 +-
ArmVirtPkg/ArmVirtQemuKernel.dsc              |   7 +-
.../Source/C/Include/Protocol/HiiFramework.h  |  53 +--
BaseTools/Source/C/Include/Protocol/UgaDraw.h | 161 -------
EmulatorPkg/EmuGopDxe/Gop.h                   |  10 +-
EmulatorPkg/EmuGopDxe/GopScreen.c             |  14 +-
EmulatorPkg/Include/Protocol/EmuFileSystem.h  |  24 +-
.../Include/Protocol/EmuGraphicsWindow.h      |  18 +-
.../Library/PlatformBmLib/PlatformBm.h        |   4 +-
.../Library/PlatformBmLib/PlatformBmData.c    |   6 +-
EmulatorPkg/Unix/Host/Gasket.h                |  12 +-
EmulatorPkg/Unix/Host/Host.h                  |   3 +-
EmulatorPkg/Unix/Host/Ia32/Gasket.S           |   2 +-
EmulatorPkg/Unix/Host/X11GraphicsWindow.c     |  82 ++--
EmulatorPkg/Unix/Host/X64/Gasket.S            |   2 +-
EmulatorPkg/Win/Host/WinGopScreen.c           |  10 +-
MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.c       |   4 +-
MdeModulePkg/Include/Library/BootLogoLib.h    |   4 +-
.../Library/BootLogoLib/BootLogoLib.c         | 228 +++-------
.../Library/BootLogoLib/BootLogoLib.inf       |   6 +-
.../Console/ConSplitterDxe/ConSplitter.c      | 405 +++---------------
.../Console/ConSplitterDxe/ConSplitter.h      | 138 +-----
.../Console/ConSplitterDxe/ConSplitterDxe.inf |  17 +-
.../Console/ConSplitterDxe/ConSplitterDxe.uni |  12 +-
.../ConSplitterDxe/ConSplitterGraphics.c      | 310 +-------------
.../GraphicsConsoleDxe/GraphicsConsole.c      | 300 +------------
.../GraphicsConsoleDxe/GraphicsConsole.h      |  21 +-
.../GraphicsConsoleDxe/GraphicsConsoleDxe.inf |   8 +-
.../GraphicsConsoleDxe/GraphicsConsoleDxe.uni |   6 +-
MdeModulePkg/Universal/HiiDatabaseDxe/Image.c |   4 +-
MdePkg/Library/UefiLib/UefiLib.inf            |   4 +-
MdePkg/Library/UefiLib/UefiLibInternal.h      |   3 +-
MdePkg/Library/UefiLib/UefiLibPrint.c         |  91 +---
MdePkg/MdePkg.dsc                             |   3 -
OvmfPkg/AmdSev/AmdSevX64.dsc                  |   4 +-
OvmfPkg/Bhyve/BhyveX64.dsc                    |   4 +-
OvmfPkg/Microvm/MicrovmX64.dsc                |   4 +-
OvmfPkg/OvmfPkgIa32.dsc                       |   2 -
OvmfPkg/OvmfPkgIa32X64.dsc                    |   2 -
OvmfPkg/OvmfPkgX64.dsc                        |   2 -
OvmfPkg/OvmfXen.dsc                           |   4 +-
.../UefiHandleParsingLib.c                    |   4 +-
.../UefiHandleParsingLib.h                    |   4 +-
.../UefiHandleParsingLib.inf                  |   4 +-
.../UefiHandleParsingLib.uni                  |   4 +-
.../PlatformBootManager.h                     |   4 +-
.../PlatformBootManagerLib.inf                |   4 +-
UefiPayloadPkg/UefiPayloadPkg.dsc             |   2 -
50 files changed, 276 insertions(+), 1760 deletions(-)
delete mode 100644 BaseTools/Source/C/Include/Protocol/UgaDraw.h
[edk2-devel] [Patch v2 00/11] Remove all UGA support
Posted by Guomin Jiang 1 year, 9 months ago
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2368

The Plan:
1. Remove the upstream UGA code first but keep definition in Edk2 at
first
2. Then downstream owner to remove UGA related code
3. Remove Edk2 definition last.

GuoMinJ (9):
  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

Guomin Jiang (2):
  BaseTools: Remove all UGA support
  MdePkg/UefiLib: Remove all UGA support

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

-- 
2.26.2.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#91394): https://edk2.groups.io/g/devel/message/91394
Mute This Topic: https://groups.io/mt/92393240/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-
Re: [edk2-devel] [Patch v2 00/11] Remove all UGA support
Posted by Michael D Kinney 1 year, 6 months ago
Hi,

What is the status of this patch series and BZ? I think it would be really good to remove
UGA usage from edk2 for the next stable tag release.

Thanks,

Mike



> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Guomin Jiang
> Sent: Thursday, July 14, 2022 6:51 PM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [Patch v2 00/11] Remove all UGA support
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2368
> 
> The Plan:
> 1. Remove the upstream UGA code first but keep definition in Edk2 at
> first
> 2. Then downstream owner to remove UGA related code
> 3. Remove Edk2 definition last.
> 
> GuoMinJ (9):
>   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
> 
> Guomin Jiang (2):
>   BaseTools: Remove all UGA support
>   MdePkg/UefiLib: Remove all UGA support
> 
>  .../PlatformBootManagerLib/PlatformBm.h       |   4 +-
>  .../PlatformBootManagerLib.inf                |   5 +-
>  ArmVirtPkg/ArmVirtQemu.dsc                    |   7 +-
>  ArmVirtPkg/ArmVirtQemuKernel.dsc              |   7 +-
>  .../Source/C/Include/Protocol/HiiFramework.h  |  53 +--
>  BaseTools/Source/C/Include/Protocol/UgaDraw.h | 161 -------
>  EmulatorPkg/EmuGopDxe/Gop.h                   |  10 +-
>  EmulatorPkg/EmuGopDxe/GopScreen.c             |  14 +-
>  EmulatorPkg/Include/Protocol/EmuFileSystem.h  |  24 +-
>  .../Include/Protocol/EmuGraphicsWindow.h      |  18 +-
>  .../Library/PlatformBmLib/PlatformBm.h        |   4 +-
>  .../Library/PlatformBmLib/PlatformBmData.c    |   6 +-
>  EmulatorPkg/Unix/Host/Gasket.h                |  12 +-
>  EmulatorPkg/Unix/Host/Host.h                  |   3 +-
>  EmulatorPkg/Unix/Host/Ia32/Gasket.S           |   2 +-
>  EmulatorPkg/Unix/Host/X11GraphicsWindow.c     |  82 ++--
>  EmulatorPkg/Unix/Host/X64/Gasket.S            |   2 +-
>  EmulatorPkg/Win/Host/WinGopScreen.c           |  10 +-
>  MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.c       |   4 +-
>  MdeModulePkg/Include/Library/BootLogoLib.h    |   4 +-
>  .../Library/BootLogoLib/BootLogoLib.c         | 228 +++-------
>  .../Library/BootLogoLib/BootLogoLib.inf       |   6 +-
>  .../Console/ConSplitterDxe/ConSplitter.c      | 405 +++---------------
>  .../Console/ConSplitterDxe/ConSplitter.h      | 138 +-----
>  .../Console/ConSplitterDxe/ConSplitterDxe.inf |  17 +-
>  .../Console/ConSplitterDxe/ConSplitterDxe.uni |  12 +-
>  .../ConSplitterDxe/ConSplitterGraphics.c      | 310 +-------------
>  .../GraphicsConsoleDxe/GraphicsConsole.c      | 300 +------------
>  .../GraphicsConsoleDxe/GraphicsConsole.h      |  21 +-
>  .../GraphicsConsoleDxe/GraphicsConsoleDxe.inf |   8 +-
>  .../GraphicsConsoleDxe/GraphicsConsoleDxe.uni |   6 +-
>  MdeModulePkg/Universal/HiiDatabaseDxe/Image.c |   4 +-
>  MdePkg/Library/UefiLib/UefiLib.inf            |   4 +-
>  MdePkg/Library/UefiLib/UefiLibInternal.h      |   3 +-
>  MdePkg/Library/UefiLib/UefiLibPrint.c         |  91 +---
>  MdePkg/MdePkg.dsc                             |   3 -
>  OvmfPkg/AmdSev/AmdSevX64.dsc                  |   4 +-
>  OvmfPkg/Bhyve/BhyveX64.dsc                    |   4 +-
>  OvmfPkg/Microvm/MicrovmX64.dsc                |   4 +-
>  OvmfPkg/OvmfPkgIa32.dsc                       |   2 -
>  OvmfPkg/OvmfPkgIa32X64.dsc                    |   2 -
>  OvmfPkg/OvmfPkgX64.dsc                        |   2 -
>  OvmfPkg/OvmfXen.dsc                           |   4 +-
>  .../UefiHandleParsingLib.c                    |   4 +-
>  .../UefiHandleParsingLib.h                    |   4 +-
>  .../UefiHandleParsingLib.inf                  |   4 +-
>  .../UefiHandleParsingLib.uni                  |   4 +-
>  .../PlatformBootManager.h                     |   4 +-
>  .../PlatformBootManagerLib.inf                |   4 +-
>  UefiPayloadPkg/UefiPayloadPkg.dsc             |   2 -
>  50 files changed, 276 insertions(+), 1760 deletions(-)
>  delete mode 100644 BaseTools/Source/C/Include/Protocol/UgaDraw.h
> 
> --
> 2.26.2.windows.1
> 
> 
> 
> 
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#95524): https://edk2.groups.io/g/devel/message/95524
Mute This Topic: https://groups.io/mt/92393240/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-