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 | # Copyright (c) 2007 - 2019, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = UefiPxeBcDxe
|
---|
17 | FILE_GUID = B95E9FDA-26DE-48d2-8807-1F9107AC5E3A
|
---|
18 | MODULE_TYPE = UEFI_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | ENTRY_POINT = PxeBcDriverEntryPoint
|
---|
21 | UNLOAD_IMAGE = NetLibDefaultUnload
|
---|
22 | MODULE_UNI_FILE = UefiPxeBcDxe.uni
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | ComponentName.c
|
---|
32 | PxeBcDriver.c
|
---|
33 | PxeBcDriver.h
|
---|
34 | PxeBcImpl.c
|
---|
35 | PxeBcImpl.h
|
---|
36 | PxeBcBoot.c
|
---|
37 | PxeBcBoot.h
|
---|
38 | PxeBcDhcp6.c
|
---|
39 | PxeBcDhcp6.h
|
---|
40 | PxeBcDhcp4.c
|
---|
41 | PxeBcDhcp4.h
|
---|
42 | PxeBcMtftp.c
|
---|
43 | PxeBcMtftp.h
|
---|
44 | PxeBcSupport.c
|
---|
45 | PxeBcSupport.h
|
---|
46 |
|
---|
47 |
|
---|
48 | [Packages]
|
---|
49 | MdePkg/MdePkg.dec
|
---|
50 | MdeModulePkg/MdeModulePkg.dec
|
---|
51 | NetworkPkg/NetworkPkg.dec
|
---|
52 |
|
---|
53 |
|
---|
54 | [LibraryClasses]
|
---|
55 | BaseLib
|
---|
56 | UefiLib
|
---|
57 | UefiBootServicesTableLib
|
---|
58 | UefiDriverEntryPoint
|
---|
59 | BaseMemoryLib
|
---|
60 | MemoryAllocationLib
|
---|
61 | DebugLib
|
---|
62 | NetLib
|
---|
63 | DpcLib
|
---|
64 | DevicePathLib
|
---|
65 | PcdLib
|
---|
66 |
|
---|
67 | [Protocols]
|
---|
68 | ## TO_START
|
---|
69 | ## SOMETIMES_CONSUMES
|
---|
70 | gEfiDevicePathProtocolGuid
|
---|
71 | gEfiNetworkInterfaceIdentifierProtocolGuid_31 ## SOMETIMES_CONSUMES
|
---|
72 | gEfiArpServiceBindingProtocolGuid ## TO_START
|
---|
73 | gEfiArpProtocolGuid ## TO_START
|
---|
74 | gEfiIp4ServiceBindingProtocolGuid ## TO_START
|
---|
75 | gEfiIp4ProtocolGuid ## TO_START
|
---|
76 | gEfiIp4Config2ProtocolGuid ## TO_START
|
---|
77 | gEfiIp6ServiceBindingProtocolGuid ## TO_START
|
---|
78 | gEfiIp6ProtocolGuid ## TO_START
|
---|
79 | gEfiIp6ConfigProtocolGuid ## TO_START
|
---|
80 | gEfiUdp4ServiceBindingProtocolGuid ## TO_START
|
---|
81 | gEfiUdp4ProtocolGuid ## TO_START
|
---|
82 | gEfiMtftp4ServiceBindingProtocolGuid ## TO_START
|
---|
83 | gEfiMtftp4ProtocolGuid ## TO_START
|
---|
84 | gEfiDhcp4ServiceBindingProtocolGuid ## TO_START
|
---|
85 | gEfiDhcp4ProtocolGuid ## TO_START
|
---|
86 | gEfiUdp6ServiceBindingProtocolGuid ## TO_START
|
---|
87 | gEfiUdp6ProtocolGuid ## TO_START
|
---|
88 | gEfiMtftp6ServiceBindingProtocolGuid ## TO_START
|
---|
89 | gEfiMtftp6ProtocolGuid ## TO_START
|
---|
90 | gEfiDhcp6ServiceBindingProtocolGuid ## TO_START
|
---|
91 | gEfiDhcp6ProtocolGuid ## TO_START
|
---|
92 | gEfiDns6ServiceBindingProtocolGuid ## SOMETIMES_CONSUMES
|
---|
93 | gEfiDns6ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
94 | gEfiPxeBaseCodeCallbackProtocolGuid ## SOMETIMES_PRODUCES
|
---|
95 | gEfiPxeBaseCodeProtocolGuid ## BY_START
|
---|
96 | gEfiLoadFileProtocolGuid ## BY_START
|
---|
97 | gEfiAdapterInformationProtocolGuid ## SOMETIMES_CONSUMES
|
---|
98 |
|
---|
99 | [Guids]
|
---|
100 | gEfiAdapterInfoUndiIpv6SupportGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
101 |
|
---|
102 | [Pcd]
|
---|
103 | gEfiMdeModulePkgTokenSpaceGuid.PcdTftpBlockSize ## SOMETIMES_CONSUMES
|
---|
104 | gEfiNetworkPkgTokenSpaceGuid.PcdPxeTftpWindowSize ## SOMETIMES_CONSUMES
|
---|
105 | gEfiNetworkPkgTokenSpaceGuid.PcdIPv4PXESupport ## CONSUMES
|
---|
106 | gEfiNetworkPkgTokenSpaceGuid.PcdIPv6PXESupport ## CONSUMES
|
---|
107 |
|
---|
108 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
109 | UefiPxeBcDxeExtra.uni
|
---|