1 ## @file 2 # TFTP Server Application 3 # 4 # Copyright (c) 2011-2012, Intel Corporation 5 # All rights reserved. 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 # 10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 # 13 ## 14 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = TftpServer 19 FILE_GUID = 94621F9E-B5CA-4cfd-82BE-0C542EB0D9BE 20 MODULE_TYPE = UEFI_APPLICATION 21 VERSION_STRING = 1.0 22 ENTRY_POINT = ShellCEntryLib 23 24 # 25 # The following information is for reference only and not required by the build tools. 26 # 27 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 28 # 29 30 [Sources] 31 TftpServer.h 32 TftpServer.c 33 34 35 [Pcd] 36 gAppPkgTokenSpaceGuid.Tftp_AckLogBase 37 gAppPkgTokenSpaceGuid.Tftp_AckMultiplier 38 gAppPkgTokenSpaceGuid.Tftp_Bandwidth 39 gAppPkgTokenSpaceGuid.Tftp_HighSpeed 40 gAppPkgTokenSpaceGuid.Tftp_MaxRetry 41 gAppPkgTokenSpaceGuid.Tftp_MaxTimeoutInSec 42 43 44 [Packages] 45 AppPkg/AppPkg.dec 46 MdePkg/MdePkg.dec 47 ShellPkg/ShellPkg.dec 48 StdLib/StdLib.dec 49 50 51 [LibraryClasses] 52 BaseMemoryLib 53 BsdSocketLib 54 DebugLib 55 DevMedia 56 EfiSocketLib 57 LibC 58 ShellLib 59 ShellCEntryLib 60 TimerLib 61 UefiBootServicesTableLib 62 UefiLib 63 UefiRuntimeServicesTableLib 64 # UseSocketDxe 65 66 [BuildOptions] 67 INTEL:*_*_*_CC_FLAGS = /Qdiag-disable:181,186 68 MSFT:*_*_*_CC_FLAGS = /Od 69 GCC:*_*_*_CC_FLAGS = -O0 -Wno-unused-variable 70 71