]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
Code scrub DxeIpl, Runtime, DevicePath, FvbServicesLib, DiskIo, Partition, English...
[mirror_edk2.git] / MdeModulePkg / Universal / DevicePathDxe / DevicePathDxe.inf
1 #/** @file
2 # Device path driver that produces three UEFI device path protocols.
3 #
4 # This driver produces Device Path Utilities protocol and optionally
5 # DevicePahtToText and DevicePathFromText protocols based on feature flags
6 # PcdDevicePathSupportDevicePathToText & PcdDevicePathSupportDevicePathFromText
7 # respectively.
8 #
9 # Copyright (c) 2006 - 2008, Intel Corporation. <BR>
10 # All rights reserved. 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 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = DevicePathDxe
23 FILE_GUID = 9B680FCE-AD6B-4F3A-B60B-F59899003443
24 MODULE_TYPE = DXE_DRIVER
25 VERSION_STRING = 1.0
26 ENTRY_POINT = DevicePathEntryPoint
27
28 #
29 # The following information is for reference only and not required by the build tools.
30 #
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32 #
33
34 [Sources.common]
35 DevicePathUtilities.c
36 DevicePathToText.c
37 DevicePathFromText.c
38 DevicePath.h
39 DevicePath.c
40
41 [Packages]
42 MdeModulePkg/MdeModulePkg.dec
43 MdePkg/MdePkg.dec
44
45 [LibraryClasses]
46 PcdLib
47 DevicePathLib
48 UefiBootServicesTableLib
49 MemoryAllocationLib
50 BaseMemoryLib
51 BaseLib
52 UefiDriverEntryPoint
53 PrintLib
54 DebugLib
55
56 [Guids]
57 gEfiVTUTF8Guid # ALWAYS_CONSUMED
58 gEfiVT100Guid # ALWAYS_CONSUMED
59 gEfiVT100PlusGuid # ALWAYS_CONSUMED
60 gEfiPcAnsiGuid # ALWAYS_CONSUMED
61 gEfiUartDevicePathGuid # ALWAYS_CONSUMED
62 gEfiSasDevicePathGuid # ALWAYS_CONSUMED
63
64 [Protocols]
65 gEfiDevicePathToTextProtocolGuid # PROTOCOL ALWAYS_PRODUCED
66 gEfiDevicePathFromTextProtocolGuid # PROTOCOL ALWAYS_PRODUCED
67 gEfiDevicePathUtilitiesProtocolGuid # PROTOCOL ALWAYS_PRODUCED
68 gEfiDebugPortProtocolGuid # PROTOCOL ALWAYS_CONSUMED
69
70 [FeaturePcd.common]
71 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText
72 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText
73
74 [Depex]
75 TRUE