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