1#/** @file 2# 3# Copyright (c) 2014, ARM Ltd. All rights reserved.<BR> 4# 5# This program and the accompanying materials 6# are licensed and made available under the terms and conditions of the BSD License 7# which accompanies this distribution. The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license.php 9# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 10# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11# 12# 13#**/ 14 15[Defines] 16 INF_VERSION = 0x00010005 17 BASE_NAME = TcpFastbootTransportDxe 18 FILE_GUID = 86787704-8fed-11e3-b3ff-f33b73acfec2 19 MODULE_TYPE = UEFI_DRIVER 20 VERSION_STRING = 1.0 21 ENTRY_POINT = TcpFastbootTransportEntryPoint 22 23[Sources.common] 24 FastbootTransportTcp.c 25 26[LibraryClasses] 27 BaseLib 28 BaseMemoryLib 29 DebugLib 30 MemoryAllocationLib 31 PrintLib 32 UefiBootServicesTableLib 33 UefiDriverEntryPoint 34 UefiRuntimeServicesTableLib 35 36[Protocols] 37 gAndroidFastbootTransportProtocolGuid 38 gEfiDhcp4ProtocolGuid 39 gEfiDhcp4ServiceBindingProtocolGuid 40 gEfiTcp4ServiceBindingProtocolGuid 41 gEfiSimpleTextOutProtocolGuid 42 gEfiTcp4ProtocolGuid 43 gEfiSimpleTextOutProtocolGuid 44 45[Packages] 46 MdePkg/MdePkg.dec 47 MdeModulePkg/MdeModulePkg.dec 48 EmbeddedPkg/EmbeddedPkg.dec 49 50[FixedPcd] 51 gEmbeddedTokenSpaceGuid.PcdAndroidFastbootTcpPort 52