Last change
on this file since 105668 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Provides Shell 'tftp' dynamic command.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved. <BR>
|
---|
5 | # Copyright (c) 2015, ARM Ltd. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010006
|
---|
14 | BASE_NAME = tftpDynamicCommand
|
---|
15 | FILE_GUID = A487A478-51EF-48AA-8794-7BEE2A0562F1
|
---|
16 | MODULE_TYPE = DXE_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | ENTRY_POINT = TftpCommandInitialize
|
---|
19 | UNLOAD_IMAGE = TftpUnload
|
---|
20 | #
|
---|
21 | # This flag specifies whether HII resource section is generated into PE image.
|
---|
22 | #
|
---|
23 | UEFI_HII_RESOURCE_SECTION = TRUE
|
---|
24 |
|
---|
25 | [Sources.common]
|
---|
26 | Tftp.uni
|
---|
27 | Tftp.h
|
---|
28 | Tftp.c
|
---|
29 | TftpDynamicCommand.c
|
---|
30 |
|
---|
31 | [Packages]
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 | ShellPkg/ShellPkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 | NetworkPkg/NetworkPkg.dec
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | MemoryAllocationLib
|
---|
39 | BaseLib
|
---|
40 | BaseMemoryLib
|
---|
41 | DebugLib
|
---|
42 | ShellLib
|
---|
43 | UefiLib
|
---|
44 | UefiRuntimeServicesTableLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | UefiDriverEntryPoint
|
---|
47 | UefiHiiServicesLib
|
---|
48 | HiiLib
|
---|
49 | FileHandleLib
|
---|
50 | NetLib
|
---|
51 |
|
---|
52 | [Protocols]
|
---|
53 | gEfiManagedNetworkServiceBindingProtocolGuid ## CONSUMES
|
---|
54 | gEfiMtftp4ServiceBindingProtocolGuid ## CONSUMES
|
---|
55 | gEfiMtftp4ProtocolGuid ## CONSUMES
|
---|
56 | gEfiHiiPackageListProtocolGuid ## CONSUMES
|
---|
57 | gEfiShellDynamicCommandProtocolGuid ## PRODUCES
|
---|
58 |
|
---|
59 | [DEPEX]
|
---|
60 | TRUE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.