Commit | Line | Data |
---|---|---|
68074260 | 1 | ## @file\r |
09610023 | 2 | # Provides Shell 'tftp' standalone application.\r |
68074260 | 3 | #\r |
09610023 | 4 | # Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved. <BR>\r |
68074260 RC |
5 | # Copyright (c) 2015, ARM Ltd. All rights reserved.<BR>\r |
6 | #\r | |
7 | # This program and the accompanying materials\r | |
8 | # are licensed and made available under the terms and conditions of the BSD License\r | |
9 | # which accompanies this distribution. The full text of the license may be found at\r | |
10 | # http://opensource.org/licenses/bsd-license.php\r | |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | #\r | |
14 | #\r | |
15 | ##\r | |
16 | \r | |
17 | [Defines]\r | |
18 | INF_VERSION = 0x00010006\r | |
09610023 RN |
19 | BASE_NAME = tftp\r |
20 | FILE_GUID = 8DC58D0D-67F5-4B97-9DFC-E442BB9A5648\r | |
86819ad0 | 21 | MODULE_TYPE = UEFI_APPLICATION\r |
68074260 | 22 | VERSION_STRING = 1.0\r |
09610023 RN |
23 | ENTRY_POINT = TftpAppInitialize\r |
24 | #\r | |
25 | # This flag specifies whether HII resource section is generated into PE image.\r | |
26 | #\r | |
27 | UEFI_HII_RESOURCE_SECTION = TRUE\r | |
68074260 RC |
28 | \r |
29 | [Sources.common]\r | |
09610023 RN |
30 | Tftp.uni\r |
31 | Tftp.h\r | |
68074260 | 32 | Tftp.c\r |
09610023 | 33 | TftpApp.c\r |
68074260 RC |
34 | \r |
35 | [Packages]\r | |
36 | MdePkg/MdePkg.dec\r | |
37 | ShellPkg/ShellPkg.dec\r | |
38 | MdeModulePkg/MdeModulePkg.dec\r | |
39 | \r | |
40 | [LibraryClasses]\r | |
41 | MemoryAllocationLib\r | |
42 | BaseLib\r | |
43 | BaseMemoryLib\r | |
44 | DebugLib\r | |
68074260 RC |
45 | ShellLib\r |
46 | UefiLib\r | |
47 | UefiRuntimeServicesTableLib\r | |
48 | UefiBootServicesTableLib\r | |
09610023 RN |
49 | UefiApplicationEntryPoint\r |
50 | UefiHiiServicesLib\r | |
68074260 RC |
51 | HiiLib\r |
52 | FileHandleLib\r | |
53 | NetLib\r | |
54 | \r | |
68074260 RC |
55 | [Protocols]\r |
56 | gEfiManagedNetworkServiceBindingProtocolGuid ## CONSUMES\r | |
57 | gEfiMtftp4ServiceBindingProtocolGuid ## CONSUMES\r | |
09610023 RN |
58 | gEfiMtftp4ProtocolGuid ## CONSUMES\r |
59 | gEfiHiiPackageListProtocolGuid ## CONSUMES\r |