2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# This module produces EFI MTFTPv4 Protocol and EFI MTFTPv4 Service Binding Protocol.
|
2007-07-30 04:37:10 +02:00
|
|
|
#
|
2014-08-28 08:34:06 +02:00
|
|
|
# This module produces EFI MTFTPv4 Protocol upon EFI UDPv4 Protocol, to provide
|
|
|
|
# basic services for client-side unicast and/or multicase TFTP operations.
|
2007-07-30 04:37:10 +02:00
|
|
|
#
|
2018-06-27 15:08:52 +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-07-30 04:37:10 +02:00
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = Mtftp4Dxe
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = Mtftp4Dxe.uni
|
2007-07-30 04:37:10 +02:00
|
|
|
FILE_GUID = DC3641B8-2FA8-4ed3-BC1F-F9962A03454B
|
2008-08-18 11:18:44 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-07-30 04:37:10 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = Mtftp4DriverEntryPoint
|
2007-09-28 08:02:01 +02:00
|
|
|
UNLOAD_IMAGE = NetLibDefaultUnload
|
2007-07-30 04:37:10 +02:00
|
|
|
#
|
|
|
|
# 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-07-30 04:37:10 +02:00
|
|
|
#
|
2018-06-27 15:08:52 +02:00
|
|
|
# DRIVER_BINDING = gMtftp4DriverBinding
|
2008-12-04 08:12:25 +01:00
|
|
|
# COMPONENT_NAME = gMtftp4ComponentName
|
|
|
|
# COMPONENT_NAME2 = gMtftp4ComponentName2
|
|
|
|
#
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-30 04:37:10 +02:00
|
|
|
Mtftp4Option.c
|
|
|
|
Mtftp4Rrq.c
|
|
|
|
Mtftp4Impl.h
|
|
|
|
ComponentName.c
|
|
|
|
Mtftp4Support.c
|
|
|
|
Mtftp4Impl.c
|
|
|
|
Mtftp4Option.h
|
|
|
|
Mtftp4Support.h
|
|
|
|
Mtftp4Driver.h
|
|
|
|
Mtftp4Driver.c
|
|
|
|
Mtftp4Wrq.c
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2019-05-15 14:02:19 +02:00
|
|
|
NetworkPkg/NetworkPkg.dec
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
|
|
|
NetLib
|
|
|
|
UdpIoLib
|
2009-05-21 01:15:47 +02:00
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Protocols]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiMtftp4ServiceBindingProtocolGuid ## BY_START
|
|
|
|
gEfiUdp4ServiceBindingProtocolGuid ## TO_START
|
|
|
|
gEfiMtftp4ProtocolGuid ## BY_START
|
|
|
|
gEfiUdp4ProtocolGuid ## TO_START
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2014-08-28 08:34:06 +02:00
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
Mtftp4DxeExtra.uni
|