1 | ## @file
|
---|
2 | # Client-side Mtftp6 service.
|
---|
3 | #
|
---|
4 | # This module produces EFI MTFTPv6 Protocol which provides basic services for
|
---|
5 | # client-side unicast and/or multicast TFTP.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # This program and the accompanying materials
|
---|
10 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
11 | # which accompanies this distribution. The full text of the license may be found at
|
---|
12 | # http://opensource.org/licenses/bsd-license.php.
|
---|
13 | #
|
---|
14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
16 | #
|
---|
17 | ##
|
---|
18 |
|
---|
19 | [Defines]
|
---|
20 | INF_VERSION = 0x00010005
|
---|
21 | BASE_NAME = Mtftp6Dxe
|
---|
22 | FILE_GUID = 99F03B99-98D8-49dd-A8D3-3219D0FFE41E
|
---|
23 | MODULE_TYPE = UEFI_DRIVER
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 | ENTRY_POINT = Mtftp6DriverEntryPoint
|
---|
26 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
27 | MODULE_UNI_FILE = Mtftp6Dxe.uni
|
---|
28 |
|
---|
29 | #
|
---|
30 | # The following information is for reference only and not required by the build tools.
|
---|
31 | #
|
---|
32 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
33 | #
|
---|
34 | # DRIVER_BINDING = gMtftp6DriverBinding
|
---|
35 | # COMPONENT_NAME = gMtftp6ComponentName
|
---|
36 | # COMPONENT_NAME2 = gMtftp6ComponentName2
|
---|
37 | #
|
---|
38 |
|
---|
39 | [Sources]
|
---|
40 | Mtftp6Driver.c
|
---|
41 | Mtftp6Driver.h
|
---|
42 | Mtftp6Impl.c
|
---|
43 | Mtftp6Impl.h
|
---|
44 | Mtftp6Option.c
|
---|
45 | Mtftp6Option.h
|
---|
46 | Mtftp6Support.h
|
---|
47 | Mtftp6Support.c
|
---|
48 | Mtftp6Rrq.c
|
---|
49 | Mtftp6Wrq.c
|
---|
50 | ComponentName.c
|
---|
51 |
|
---|
52 |
|
---|
53 | [Packages]
|
---|
54 | MdePkg/MdePkg.dec
|
---|
55 | MdeModulePkg/MdeModulePkg.dec
|
---|
56 |
|
---|
57 |
|
---|
58 | [LibraryClasses]
|
---|
59 | UefiLib
|
---|
60 | BaseLib
|
---|
61 | UefiBootServicesTableLib
|
---|
62 | UefiRuntimeServicesTableLib
|
---|
63 | UefiDriverEntryPoint
|
---|
64 | DebugLib
|
---|
65 | NetLib
|
---|
66 | UdpIoLib
|
---|
67 |
|
---|
68 |
|
---|
69 | [Protocols]
|
---|
70 | gEfiUdp6ServiceBindingProtocolGuid ## TO_START
|
---|
71 | gEfiUdp6ProtocolGuid ## TO_START
|
---|
72 | gEfiMtftp6ServiceBindingProtocolGuid ## BY_START
|
---|
73 | gEfiMtftp6ProtocolGuid ## BY_START
|
---|
74 |
|
---|
75 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
76 | Mtftp6DxeExtra.uni
|
---|