1 | ## @file Udp6Dxe.inf
|
---|
2 | # Component description file for Udp6 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 = Udp6Dxe
|
---|
19 | FILE_GUID = D912C7BC-F098-4367-92BA-E911083C7B0E
|
---|
20 | MODULE_TYPE = UEFI_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 |
|
---|
23 | ENTRY_POINT = Udp6DriverEntryPoint
|
---|
24 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
25 |
|
---|
26 | #
|
---|
27 | # The following information is for reference only and not required by the build tools.
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | Udp6Driver.h
|
---|
34 | Udp6Driver.c
|
---|
35 | Udp6Impl.c
|
---|
36 | Udp6Impl.h
|
---|
37 | ComponentName.c
|
---|
38 | Udp6Main.c
|
---|
39 |
|
---|
40 | [Packages]
|
---|
41 | MdePkg/MdePkg.dec
|
---|
42 | MdeModulePkg/MdeModulePkg.dec
|
---|
43 |
|
---|
44 | [LibraryClasses]
|
---|
45 | BaseLib
|
---|
46 | BaseMemoryLib
|
---|
47 | MemoryAllocationLib
|
---|
48 | UefiBootServicesTableLib
|
---|
49 | UefiDriverEntryPoint
|
---|
50 | UefiRuntimeServicesTableLib
|
---|
51 | UefiLib
|
---|
52 | DebugLib
|
---|
53 | IpIoLib
|
---|
54 | NetLib
|
---|
55 | DpcLib
|
---|
56 |
|
---|
57 |
|
---|
58 | [Protocols]
|
---|
59 | gEfiIp6ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
60 | gEfiIp6ServiceBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
61 | gEfiUdp6ServiceBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
62 | gEfiUdp6ProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
63 |
|
---|