2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# This library instance provides DPC service by consuming EFI DPC Protocol.
|
2010-02-24 01:21:16 +01:00
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:05:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-02-24 01:21:16 +01:00
|
|
|
#
|
|
|
|
##
|
2007-11-20 06:42:23 +01:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DxeDpcLib
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = DxeDpcLib.uni
|
2007-11-20 06:42:23 +01:00
|
|
|
FILE_GUID = 38897D86-FF36-4472-AE64-1DB9AE715C81
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2018-06-29 05:27:00 +02:00
|
|
|
LIBRARY_CLASS = DpcLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
2007-11-20 06:42:23 +01:00
|
|
|
CONSTRUCTOR = DpcLibConstructor
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2007-11-20 06:42:23 +01:00
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-11-20 06:42:23 +01:00
|
|
|
DpcLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2019-05-15 14:02:19 +02:00
|
|
|
NetworkPkg/NetworkPkg.dec
|
2007-11-20 06:42:23 +01:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
DebugLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
|
|
|
|
[Protocols]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiDpcProtocolGuid ## CONSUMES
|
2008-08-18 11:26:33 +02:00
|
|
|
|
2011-07-27 10:54:57 +02:00
|
|
|
[Depex.common.DXE_DRIVER, Depex.common.DXE_RUNTIME_DRIVER, Depex.common.DXE_SAL_DRIVER, Depex.common.DXE_SMM_DRIVER]
|
|
|
|
gEfiDpcProtocolGuid
|