1## @file 2# This module produces EFI MTFTPv4 Protocol and EFI MTFTPv4 Service Binding Protocol. 3# 4# This module produces EFI MTFTPv4 Protocol upon EFI UDPv4 Protocol, to provide 5# basic services for client-side unicast and/or multicase TFTP operations. 6# 7# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> 8# This program and the accompanying materials 9# are licensed and made available under the terms and conditions of the BSD License 10# which accompanies this distribution. The full text of the license may be found at 11# http://opensource.org/licenses/bsd-license.php 12# 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16# 17## 18 19[Defines] 20 INF_VERSION = 0x00010005 21 BASE_NAME = Mtftp4Dxe 22 MODULE_UNI_FILE = Mtftp4Dxe.uni 23 FILE_GUID = DC3641B8-2FA8-4ed3-BC1F-F9962A03454B 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = Mtftp4DriverEntryPoint 27 UNLOAD_IMAGE = NetLibDefaultUnload 28# 29# The following information is for reference only and not required by the build tools. 30# 31# VALID_ARCHITECTURES = IA32 X64 IPF EBC 32# 33# DRIVER_BINDING = gMtftp4DriverBinding 34# COMPONENT_NAME = gMtftp4ComponentName 35# COMPONENT_NAME2 = gMtftp4ComponentName2 36# 37 38[Sources] 39 Mtftp4Option.c 40 Mtftp4Rrq.c 41 Mtftp4Impl.h 42 ComponentName.c 43 Mtftp4Support.c 44 Mtftp4Impl.c 45 Mtftp4Option.h 46 Mtftp4Support.h 47 Mtftp4Driver.h 48 Mtftp4Driver.c 49 Mtftp4Wrq.c 50 51 52[Packages] 53 MdePkg/MdePkg.dec 54 MdeModulePkg/MdeModulePkg.dec 55 56 57[LibraryClasses] 58 UefiLib 59 UefiBootServicesTableLib 60 UefiDriverEntryPoint 61 DebugLib 62 NetLib 63 UdpIoLib 64 MemoryAllocationLib 65 BaseMemoryLib 66 67 68[Protocols] 69 gEfiMtftp4ServiceBindingProtocolGuid ## BY_START 70 gEfiUdp4ServiceBindingProtocolGuid ## TO_START 71 gEfiMtftp4ProtocolGuid ## BY_START 72 gEfiUdp4ProtocolGuid ## TO_START 73 74[UserExtensions.TianoCore."ExtraFiles"] 75 Mtftp4DxeExtra.uni 76