Commit | Line | Data |
---|---|---|
68074260 RC |
1 | ## @file\r |
2 | # Provides Shell 'tftp' command functions\r | |
3 | #\r | |
4 | # Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved. <BR>\r | |
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 | |
19 | BASE_NAME = UefiShellTftpCommandLib\r | |
20 | FILE_GUID = D2B61A25-9835-4E5D-906A-15615E1FF668\r | |
86819ad0 | 21 | MODULE_TYPE = UEFI_APPLICATION\r |
68074260 RC |
22 | VERSION_STRING = 1.0\r |
23 | LIBRARY_CLASS = NULL|UEFI_APPLICATION UEFI_DRIVER\r | |
24 | CONSTRUCTOR = ShellTftpCommandLibConstructor\r | |
25 | DESTRUCTOR = ShellTftpCommandLibDestructor\r | |
26 | \r | |
27 | [Sources.common]\r | |
28 | UefiShellTftpCommandLib.uni\r | |
29 | UefiShellTftpCommandLib.c\r | |
30 | UefiShellTftpCommandLib.h\r | |
31 | Tftp.c\r | |
32 | \r | |
33 | [Packages]\r | |
34 | MdePkg/MdePkg.dec\r | |
35 | ShellPkg/ShellPkg.dec\r | |
36 | MdeModulePkg/MdeModulePkg.dec\r | |
37 | \r | |
38 | [LibraryClasses]\r | |
39 | MemoryAllocationLib\r | |
40 | BaseLib\r | |
41 | BaseMemoryLib\r | |
42 | DebugLib\r | |
43 | ShellCommandLib\r | |
44 | ShellLib\r | |
45 | UefiLib\r | |
46 | UefiRuntimeServicesTableLib\r | |
47 | UefiBootServicesTableLib\r | |
48 | PcdLib\r | |
49 | HiiLib\r | |
50 | FileHandleLib\r | |
51 | NetLib\r | |
52 | \r | |
53 | [Pcd]\r | |
54 | gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask ## CONSUMES\r | |
55 | \r | |
56 | [Protocols]\r | |
57 | gEfiManagedNetworkServiceBindingProtocolGuid ## CONSUMES\r | |
58 | gEfiMtftp4ServiceBindingProtocolGuid ## CONSUMES\r | |
59 | \r | |
60 | [Guids]\r | |
61 | gShellTftpHiiGuid ## CONSUMES ## HII\r |