]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/DnsDxe/DnsDxe.inf
NetworkPkg: Add DNS feature support over IPv4 and IPv6.
[mirror_edk2.git] / NetworkPkg / DnsDxe / DnsDxe.inf
1 ## @file
2 # Implementation of EFI_DNS4_PROTOCOL and EFI_DNS6_PROTOCOL interfaces.
3 #
4 # Copyright (c) 2015, 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
17 [Defines]
18 INF_VERSION = 0x00010005
19 BASE_NAME = DnsDxe
20 FILE_GUID = b219e140-dffc-11e3-b956-0022681e6906
21 MODULE_TYPE = UEFI_DRIVER
22 VERSION_STRING = 1.0
23 ENTRY_POINT = DnsDriverEntryPoint
24 UNLOAD_IMAGE = DnsUnload
25
26 [Packages]
27 MdePkg/MdePkg.dec
28 MdeModulePkg/MdeModulePkg.dec
29
30 [Sources]
31 ComponentName.c
32 DnsDriver.h
33 DnsDriver.c
34 DnsImpl.h
35 DnsImpl.c
36 DnsProtocol.c
37 DnsDhcp.h
38 DnsDhcp.c
39
40
41 [LibraryClasses]
42 BaseLib
43 UefiLib
44 UefiBootServicesTableLib
45 UefiDriverEntryPoint
46 UefiRuntimeServicesTableLib
47 BaseMemoryLib
48 MemoryAllocationLib
49 NetLib
50 DebugLib
51 DpcLib
52 PrintLib
53 UdpIoLib
54
55
56 [Protocols]
57 gEfiDns4ServiceBindingProtocolGuid ## BY_START
58 gEfiDns4ProtocolGuid ## BY_START
59 gEfiUdp4ServiceBindingProtocolGuid ## TO_START
60 gEfiUdp4ProtocolGuid ## BY_START
61 gEfiDhcp4ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
62 gEfiDhcp4ProtocolGuid ## SOMETIMES_CONSUMES
63 gEfiIp4Config2ProtocolGuid ## SOMETIMES_CONSUMES
64 gEfiManagedNetworkServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
65 gEfiManagedNetworkProtocolGuid ## SOMETIMES_CONSUMES
66
67 gEfiDns6ServiceBindingProtocolGuid ## BY_START
68 gEfiDns6ProtocolGuid ## BY_START
69 gEfiUdp6ServiceBindingProtocolGuid ## TO_START
70 gEfiUdp6ProtocolGuid ## TO_START
71 gEfiDhcp6ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
72 gEfiDhcp6ProtocolGuid ## SOMETIMES_CONSUMES
73
74
75 [Guids]
76