1 | ## @file
|
---|
2 | # Component description file for Mtftp6 module.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # This program and the accompanying materials
|
---|
7 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
8 | # which accompanies this distribution. The full text of the license may be found at
|
---|
9 | # http://opensource.org/licenses/bsd-license.php.
|
---|
10 | #
|
---|
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
13 | #
|
---|
14 | ##
|
---|
15 |
|
---|
16 | [Defines]
|
---|
17 | INF_VERSION = 0x00010005
|
---|
18 | BASE_NAME = Mtftp6Dxe
|
---|
19 | FILE_GUID = 99F03B99-98D8-49dd-A8D3-3219D0FFE41E
|
---|
20 | MODULE_TYPE = UEFI_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | ENTRY_POINT = Mtftp6DriverEntryPoint
|
---|
23 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
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 | # DRIVER_BINDING = gMtftp6DriverBinding
|
---|
30 | # COMPONENT_NAME = gMtftp6ComponentName
|
---|
31 | # COMPONENT_NAME2 = gMtftp6ComponentName2
|
---|
32 | #
|
---|
33 |
|
---|
34 | [Sources]
|
---|
35 | Mtftp6Driver.c
|
---|
36 | Mtftp6Driver.h
|
---|
37 | Mtftp6Impl.c
|
---|
38 | Mtftp6Impl.h
|
---|
39 | Mtftp6Option.c
|
---|
40 | Mtftp6Option.h
|
---|
41 | Mtftp6Support.h
|
---|
42 | Mtftp6Support.c
|
---|
43 | Mtftp6Rrq.c
|
---|
44 | Mtftp6Wrq.c
|
---|
45 | ComponentName.c
|
---|
46 |
|
---|
47 |
|
---|
48 | [Packages]
|
---|
49 | MdePkg/MdePkg.dec
|
---|
50 | MdeModulePkg/MdeModulePkg.dec
|
---|
51 |
|
---|
52 |
|
---|
53 | [LibraryClasses]
|
---|
54 | UefiLib
|
---|
55 | BaseLib
|
---|
56 | UefiBootServicesTableLib
|
---|
57 | UefiRuntimeServicesTableLib
|
---|
58 | UefiDriverEntryPoint
|
---|
59 | DebugLib
|
---|
60 | NetLib
|
---|
61 | UdpIoLib
|
---|
62 |
|
---|
63 |
|
---|
64 | [Protocols]
|
---|
65 | gEfiUdp6ServiceBindingProtocolGuid
|
---|
66 | gEfiUdp6ProtocolGuid
|
---|
67 | gEfiMtftp6ServiceBindingProtocolGuid
|
---|
68 | gEfiMtftp6ProtocolGuid
|
---|
69 |
|
---|