]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
ArmPkg/ArmMmuLib ARM: handle unmapped sections when updating permissions
[mirror_edk2.git] / NetworkPkg / UefiPxeBcDxe / UefiPxeBcDxe.inf
1 ## @file
2 # Access PXE-compatible devices for network access and network booting.
3 #
4 # This driver provides PXE Base Code Protocol which is used to accessing
5 # PXE-compatible device for network access or booting. This driver supports
6 # both IPv4 and IPv6 network stack.
7 #
8 # Notes:
9 # 1) This driver can't co-work with the UefiPxeBcDxe driver in MdeModulePkg.
10 # 2) This driver includes more bug fixes and supports more features (e.g. IPv6,
11 # MTFTP windowsize) than the UefiPxeBcDxe driver in MdeModulePkg. So, we
12 # recommend using this driver even though both of them can be used.
13 #
14 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
15 #
16 # This program and the accompanying materials
17 # are licensed and made available under the terms and conditions of the BSD License
18 # which accompanies this distribution. The full text of the license may be found at
19 # http://opensource.org/licenses/bsd-license.php.
20 #
21 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
22 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
23 #
24 ##
25
26 [Defines]
27 INF_VERSION = 0x00010005
28 BASE_NAME = UefiPxeBcDxe
29 FILE_GUID = B95E9FDA-26DE-48d2-8807-1F9107AC5E3A
30 MODULE_TYPE = UEFI_DRIVER
31 VERSION_STRING = 1.0
32 ENTRY_POINT = PxeBcDriverEntryPoint
33 UNLOAD_IMAGE = NetLibDefaultUnload
34 MODULE_UNI_FILE = UefiPxeBcDxe.uni
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64
40 #
41
42 [Sources]
43 ComponentName.c
44 PxeBcDriver.c
45 PxeBcDriver.h
46 PxeBcImpl.c
47 PxeBcImpl.h
48 PxeBcBoot.c
49 PxeBcBoot.h
50 PxeBcDhcp6.c
51 PxeBcDhcp6.h
52 PxeBcDhcp4.c
53 PxeBcDhcp4.h
54 PxeBcMtftp.c
55 PxeBcMtftp.h
56 PxeBcSupport.c
57 PxeBcSupport.h
58
59
60 [Packages]
61 MdePkg/MdePkg.dec
62 MdeModulePkg/MdeModulePkg.dec
63 NetworkPkg/NetworkPkg.dec
64
65
66 [LibraryClasses]
67 BaseLib
68 UefiLib
69 UefiBootServicesTableLib
70 UefiDriverEntryPoint
71 BaseMemoryLib
72 MemoryAllocationLib
73 DebugLib
74 NetLib
75 DpcLib
76 DevicePathLib
77 PcdLib
78
79 [Protocols]
80 ## TO_START
81 ## SOMETIMES_CONSUMES
82 gEfiDevicePathProtocolGuid
83 gEfiNetworkInterfaceIdentifierProtocolGuid_31 ## SOMETIMES_CONSUMES
84 gEfiArpServiceBindingProtocolGuid ## TO_START
85 gEfiArpProtocolGuid ## TO_START
86 gEfiIp4ServiceBindingProtocolGuid ## TO_START
87 gEfiIp4ProtocolGuid ## TO_START
88 gEfiIp4Config2ProtocolGuid ## TO_START
89 gEfiIp6ServiceBindingProtocolGuid ## TO_START
90 gEfiIp6ProtocolGuid ## TO_START
91 gEfiIp6ConfigProtocolGuid ## TO_START
92 gEfiUdp4ServiceBindingProtocolGuid ## TO_START
93 gEfiUdp4ProtocolGuid ## TO_START
94 gEfiMtftp4ServiceBindingProtocolGuid ## TO_START
95 gEfiMtftp4ProtocolGuid ## TO_START
96 gEfiDhcp4ServiceBindingProtocolGuid ## TO_START
97 gEfiDhcp4ProtocolGuid ## TO_START
98 gEfiUdp6ServiceBindingProtocolGuid ## TO_START
99 gEfiUdp6ProtocolGuid ## TO_START
100 gEfiMtftp6ServiceBindingProtocolGuid ## TO_START
101 gEfiMtftp6ProtocolGuid ## TO_START
102 gEfiDhcp6ServiceBindingProtocolGuid ## TO_START
103 gEfiDhcp6ProtocolGuid ## TO_START
104 gEfiDns6ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
105 gEfiDns6ProtocolGuid ## SOMETIMES_CONSUMES
106 gEfiPxeBaseCodeCallbackProtocolGuid ## SOMETIMES_PRODUCES
107 gEfiPxeBaseCodeProtocolGuid ## BY_START
108 gEfiLoadFileProtocolGuid ## BY_START
109 gEfiAdapterInformationProtocolGuid ## SOMETIMES_CONSUMES
110
111 [Guids]
112 gEfiAdapterInfoUndiIpv6SupportGuid ## SOMETIMES_CONSUMES ## GUID
113
114 [Pcd]
115 gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize ## SOMETIMES_CONSUMES
116 gEfiNetworkPkgTokenSpaceGuid.PcdPxeTftpWindowSize ## SOMETIMES_CONSUMES
117
118 [UserExtensions.TianoCore."ExtraFiles"]
119 UefiPxeBcDxeExtra.uni