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