mirror of https://github.com/acidanthera/audk.git
Make IntelFrameworkPkg pass package build
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3872 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c0ee02af6b
commit
c18099186c
|
@ -45,6 +45,11 @@
|
|||
[PcdsPatchableInModule.common]
|
||||
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
|
||||
|
||||
[PcdsFeatureFlag.common]
|
||||
gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable|FALSE
|
||||
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE
|
||||
gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|FALSE
|
||||
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|FALSE
|
||||
|
||||
################################################################################
|
||||
#
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
|
||||
#include <FrameworkDxe.h>
|
||||
|
||||
#include <Protocol/DriverBinding.h>
|
||||
#include <Protocol/ComponentName.h>
|
||||
#include <Protocol/ComponentName2.h>
|
||||
#include <Protocol/DriverConfiguration.h>
|
||||
#include <Protocol/DriverDiagnostics.h>
|
||||
#include <Protocol/DriverDiagnostics2.h>
|
||||
|
||||
#include <Guid/EventGroup.h>
|
||||
#include <Guid/EventLegacyBios.h>
|
||||
#include <Guid/FrameworkDevicePath.h>
|
||||
|
|
|
@ -55,6 +55,14 @@
|
|||
BaseLib
|
||||
UefiBootServicesTableLib
|
||||
|
||||
[Protocols]
|
||||
gEfiDriverBindingProtocolGuid # ALWAYS_CONSUMED
|
||||
gEfiComponentNameProtocolGuid # SOMETIMES_CONSUMED
|
||||
gEfiComponentName2ProtocolGuid # SOMETIMES_CONSUMED
|
||||
gEfiDriverConfigurationProtocolGuid # SOMETIMES_CONSUMED
|
||||
gEfiDriverDiagnosticsProtocolGuid # SOMETIMES_CONSUMED
|
||||
gEfiDriverDiagnostics2ProtocolGuid # SOMETIMES_CONSUMED
|
||||
gEfiFirmwareVolume2ProtocolGuid # ALWAYS_CONSUMED
|
||||
|
||||
[Guids]
|
||||
gEfiFrameworkDevicePathGuid # ALWAYS_CONSUMED
|
||||
|
@ -65,3 +73,8 @@
|
|||
[Pcd.common]
|
||||
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize
|
||||
|
||||
[FeaturePcd.common]
|
||||
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable
|
||||
gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable
|
||||
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable
|
||||
gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable
|
||||
|
|
Loading…
Reference in New Issue