]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf
MdeModulePkg/UefiPxeBcDxe: Add the clarification compared to UefiPxeBcDxe in NetworkPkg.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / UefiPxeBcDxe / UefiPxeBcDxe.inf
CommitLineData
ecd28a61 1## @file\r
6036e94d 2# This module produces EFI Preboot Execution Environment (PXE) Base Code Protocol.\r
31f228cf 3#\r
6036e94d
SZ
4# This module produces EFI PXE Base Code Protocol upon EFI MMP Protocl and IPv4\r
5# network stack, used to control PXE-compatible devices. It produces EFI Load File\r
6# Protocol to provide one clean way to otain control from the boot manager if the\r
f120d15e
JW
7# boot patch is from the remote device. This driver only supports IPv4 network stack.\r
8#\r
9# Notes:\r
10# 1) This driver can't co-work with the UefiPxeBcDxe driver in NetworkPkg.\r
11# 2) This driver might have some issues that have been fixed in the UefiPxeBcDxe\r
12# driver in NetworkPkg.\r
13# 3) This driver supports fewer features than the UefiPxeBcDxe driver in NetworkPkg\r
14# (e.g. IPv6, MTFTP windowsize).\r
15# 4) UefiPxeBcDxe driver in NetworkPkg is recommended for use instead of this one even\r
16# though both of them can be used.\r
31f228cf 17#\r
d1102dba 18# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>\r
e5eed7d3 19# This program and the accompanying materials\r
31f228cf 20# are licensed and made available under the terms and conditions of the BSD License\r
21# which accompanies this distribution. The full text of the license may be found at\r
22# http://opensource.org/licenses/bsd-license.php\r
23#\r
24# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
25# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
26#\r
27#\r
ecd28a61 28##\r
31f228cf 29\r
30\r
31[Defines]\r
32 INF_VERSION = 0x00010005\r
ace28761 33 BASE_NAME = UefiPxe4BcDxe\r
6036e94d 34 MODULE_UNI_FILE = UefiPxe4BcDxe.uni\r
31f228cf 35 FILE_GUID = 3B1DEAB5-C75D-442e-9238-8E2FFB62B0BB\r
36 MODULE_TYPE = UEFI_DRIVER\r
37 VERSION_STRING = 1.0\r
38 ENTRY_POINT = PxeBcDriverEntryPoint\r
0bf47d3d 39 UNLOAD_IMAGE = NetLibDefaultUnload\r
31f228cf 40\r
41#\r
42# The following information is for reference only and not required by the build tools.\r
43#\r
de005223 44# VALID_ARCHITECTURES = IA32 X64\r
31f228cf 45#\r
d1102dba 46# DRIVER_BINDING = gPxeBcDriverBinding\r
31f228cf 47# COMPONENT_NAME = gPxeBcComponentName\r
48# COMPONENT_NAME2 = gPxeBcComponentName2\r
49#\r
50\r
6bfbb5f0 51[Sources]\r
31f228cf 52 PxeBcMtftp.c\r
53 PxeBcSupport.h\r
54 PxeBcSupport.c\r
55 PxeBcDriver.c\r
56 PxeBcDhcp.h\r
57 ComponentName.c\r
58 PxeBcImpl.c\r
59 PxeBcImpl.h\r
60 PxeBcDhcp.c\r
61 PxeBcMtftp.h\r
62 PxeBcDriver.h\r
d1102dba 63\r
31f228cf 64\r
65[Packages]\r
66 MdePkg/MdePkg.dec\r
67 MdeModulePkg/MdeModulePkg.dec\r
68\r
31f228cf 69[LibraryClasses]\r
70 BaseLib\r
71 UefiLib\r
72 UefiBootServicesTableLib\r
73 UefiDriverEntryPoint\r
74 BaseMemoryLib\r
75 MemoryAllocationLib\r
76 DebugLib\r
77 NetLib\r
78 DpcLib\r
cfbc1a75 79 PcdLib\r
31f228cf 80\r
31f228cf 81[Protocols]\r
6036e94d
SZ
82 gEfiPxeBaseCodeCallbackProtocolGuid ## SOMETIMES_PRODUCES\r
83 gEfiPxeBaseCodeProtocolGuid ## BY_START\r
84 gEfiLoadFileProtocolGuid ## BY_START\r
31f228cf 85 gEfiNetworkInterfaceIdentifierProtocolGuid_31 ## SOMETIMES_CONSUMES\r
6036e94d
SZ
86 gEfiArpServiceBindingProtocolGuid ## TO_START\r
87 gEfiArpProtocolGuid ## TO_START\r
88 gEfiMtftp4ServiceBindingProtocolGuid ## TO_START\r
89 gEfiMtftp4ProtocolGuid ## TO_START\r
90 gEfiUdp4ServiceBindingProtocolGuid ## TO_START\r
91 gEfiUdp4ProtocolGuid ## TO_START\r
92 gEfiDhcp4ServiceBindingProtocolGuid ## TO_START\r
93 gEfiDhcp4ProtocolGuid ## TO_START\r
94 gEfiIp4ServiceBindingProtocolGuid ## TO_START\r
95 gEfiIp4ProtocolGuid ## TO_START\r
14e84fd8 96 gEfiIp4Config2ProtocolGuid ## TO_START\r
cfbc1a75 97\r
d1102dba
LG
98[Pcd]\r
99 gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize ## SOMETIMES_CONSUMES\r
6036e94d
SZ
100\r
101[UserExtensions.TianoCore."ExtraFiles"]\r
102 UefiPxe4BcDxeExtra.uni\r