ShellPkg: Remove IntelFramweorkModulePkg as Shell library dependency
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: jaben carsey <jaben.carsey@intel.com> Reviewed-by: Tim Lewis <tim.lewis@insyde.com> Reviewed-by: Samer El-Haj-Mahmoud <elhaj@hp.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16526 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -815,6 +815,21 @@ STATIC CONST EFI_GUID WinNtThunkProtocolGuid = LOCAL_EFI_WIN_NT_THUNK_PROTOCOL_G
|
|||||||
STATIC CONST EFI_GUID WinNtIoProtocolGuid = LOCAL_EFI_WIN_NT_BUS_DRIVER_IO_PROTOCOL_GUID;
|
STATIC CONST EFI_GUID WinNtIoProtocolGuid = LOCAL_EFI_WIN_NT_BUS_DRIVER_IO_PROTOCOL_GUID;
|
||||||
STATIC CONST EFI_GUID WinNtSerialPortGuid = LOCAL_EFI_WIN_NT_SERIAL_PORT_GUID;
|
STATIC CONST EFI_GUID WinNtSerialPortGuid = LOCAL_EFI_WIN_NT_SERIAL_PORT_GUID;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Deprecated protocols we dont want to link from IntelFrameworkModulePkg
|
||||||
|
//
|
||||||
|
#define LOCAL_EFI_ISA_IO_PROTOCOL_GUID \
|
||||||
|
{ \
|
||||||
|
0x7ee2bd44, 0x3da0, 0x11d4, { 0x9a, 0x38, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
|
||||||
|
}
|
||||||
|
#define LOCAL_EFI_ISA_ACPI_PROTOCOL_GUID \
|
||||||
|
{ \
|
||||||
|
0x64a892dc, 0x5561, 0x4536, { 0x92, 0xc7, 0x79, 0x9b, 0xfc, 0x18, 0x33, 0x55 } \
|
||||||
|
}
|
||||||
|
STATIC CONST EFI_GUID EfiIsaIoProtocolGuid = LOCAL_EFI_ISA_IO_PROTOCOL_GUID;
|
||||||
|
STATIC CONST EFI_GUID EfiIsaAcpiProtocolGuid = LOCAL_EFI_ISA_ACPI_PROTOCOL_GUID;
|
||||||
|
|
||||||
|
|
||||||
STATIC CONST GUID_INFO_BLOCK mGuidStringListNT[] = {
|
STATIC CONST GUID_INFO_BLOCK mGuidStringListNT[] = {
|
||||||
{STRING_TOKEN(STR_WINNT_THUNK), (EFI_GUID*)&WinNtThunkProtocolGuid, NULL},
|
{STRING_TOKEN(STR_WINNT_THUNK), (EFI_GUID*)&WinNtThunkProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_WINNT_DRIVER_IO), (EFI_GUID*)&WinNtIoProtocolGuid, NULL},
|
{STRING_TOKEN(STR_WINNT_DRIVER_IO), (EFI_GUID*)&WinNtIoProtocolGuid, NULL},
|
||||||
@ -926,8 +941,12 @@ STATIC CONST GUID_INFO_BLOCK mGuidStringList[] = {
|
|||||||
{STRING_TOKEN(STR_GPT_NBR), &gEfiPartTypeLegacyMbrGuid, NULL},
|
{STRING_TOKEN(STR_GPT_NBR), &gEfiPartTypeLegacyMbrGuid, NULL},
|
||||||
{STRING_TOKEN(STR_DRIVER_CONFIG), &gEfiDriverConfigurationProtocolGuid, NULL},
|
{STRING_TOKEN(STR_DRIVER_CONFIG), &gEfiDriverConfigurationProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_DRIVER_CONFIG2), &gEfiDriverConfiguration2ProtocolGuid, NULL},
|
{STRING_TOKEN(STR_DRIVER_CONFIG2), &gEfiDriverConfiguration2ProtocolGuid, NULL},
|
||||||
{STRING_TOKEN(STR_ISA_IO), &gEfiIsaIoProtocolGuid, NULL},
|
|
||||||
{STRING_TOKEN(STR_ISA_ACPI), &gEfiIsaAcpiProtocolGuid, NULL},
|
//
|
||||||
|
// these are using local (non-global) definitions to reduce package dependancy.
|
||||||
|
//
|
||||||
|
{STRING_TOKEN(STR_ISA_IO), (EFI_GUID*)&EfiIsaIoProtocolGuid, NULL},
|
||||||
|
{STRING_TOKEN(STR_ISA_ACPI), (EFI_GUID*)&EfiIsaAcpiProtocolGuid, NULL},
|
||||||
|
|
||||||
//
|
//
|
||||||
// the ones under this are GUID identified structs, not protocols
|
// the ones under this are GUID identified structs, not protocols
|
||||||
|
@ -135,8 +135,6 @@
|
|||||||
#include <Protocol/DiskIo2.h>
|
#include <Protocol/DiskIo2.h>
|
||||||
#include <Protocol/AdapterInformation.h>
|
#include <Protocol/AdapterInformation.h>
|
||||||
#include <Protocol/EfiShellDynamicCommand.h>
|
#include <Protocol/EfiShellDynamicCommand.h>
|
||||||
#include <Protocol/IsaIo.h>
|
|
||||||
#include <Protocol/IsaAcpi.h>
|
|
||||||
|
|
||||||
#include <Library/HandleParsingLib.h>
|
#include <Library/HandleParsingLib.h>
|
||||||
#include <Library/UefiBootServicesTableLib.h>
|
#include <Library/UefiBootServicesTableLib.h>
|
||||||
|
@ -36,7 +36,6 @@
|
|||||||
MdePkg/MdePkg.dec
|
MdePkg/MdePkg.dec
|
||||||
MdeModulePkg/MdeModulePkg.dec
|
MdeModulePkg/MdeModulePkg.dec
|
||||||
ShellPkg/ShellPkg.dec
|
ShellPkg/ShellPkg.dec
|
||||||
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
|
||||||
|
|
||||||
[LibraryClasses]
|
[LibraryClasses]
|
||||||
UefiBootServicesTableLib
|
UefiBootServicesTableLib
|
||||||
@ -173,8 +172,6 @@
|
|||||||
gEfiIdeControllerInitProtocolGuid ##UNDEFINED
|
gEfiIdeControllerInitProtocolGuid ##UNDEFINED
|
||||||
gEfiDiskIo2ProtocolGuid ##UNDEFINED
|
gEfiDiskIo2ProtocolGuid ##UNDEFINED
|
||||||
gEfiAdapterInformationProtocolGuid ##UNDEFINED
|
gEfiAdapterInformationProtocolGuid ##UNDEFINED
|
||||||
gEfiIsaIoProtocolGuid ##UNDEFINED
|
|
||||||
gEfiIsaAcpiProtocolGuid ##UNDEFINED
|
|
||||||
gEfiShellDynamicCommandProtocolGuid ##UNDEFINED
|
gEfiShellDynamicCommandProtocolGuid ##UNDEFINED
|
||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
|
Reference in New Issue
Block a user