2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# This module produces Deferred Procedure Call Protocol.
|
2007-11-20 06:42:23 +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
|
2007-11-20 06:42:23 +01:00
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-11-20 06:42:23 +01:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DpcDxe
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = DpcDxe.uni
|
2007-11-20 06:42:23 +01:00
|
|
|
FILE_GUID = A210F973-229D-4f4d-AA37-9895E6C9EABA
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = DpcDriverEntryPoint
|
|
|
|
|
|
|
|
#
|
|
|
|
# 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
|
|
|
Dpc.c
|
|
|
|
Dpc.h
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2019-05-15 14:02:19 +02:00
|
|
|
NetworkPkg/NetworkPkg.dec
|
2007-11-20 06:42:23 +01:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
BaseLib
|
|
|
|
DebugLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
|
|
|
|
[Protocols]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiDpcProtocolGuid ## PRODUCES
|
2007-11-20 06:42:23 +01:00
|
|
|
|
|
|
|
[Depex]
|
2014-08-28 08:34:06 +02:00
|
|
|
TRUE
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
DpcDxeExtra.uni
|