]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
1. Correct File header to ## @file
[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 - 2010, 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]
35 DevicePathUtilities.c
36 DevicePathToText.c ||||PcdDevicePathSupportDevicePathToText
37 DevicePathFromText.c ||||PcdDevicePathSupportDevicePathFromText
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 | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
58 gEfiVT100Guid | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
59 gEfiVT100PlusGuid | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
60 gEfiPcAnsiGuid | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
61 gEfiUartDevicePathGuid | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
62 gEfiSasDevicePathGuid | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
63
64 [Protocols]
65 gEfiDevicePathToTextProtocolGuid | PcdDevicePathSupportDevicePathFromText ## PRODUCES
66 gEfiDevicePathFromTextProtocolGuid | PcdDevicePathSupportDevicePathToText ## PRODUCES
67 gEfiDevicePathUtilitiesProtocolGuid ## CONSUMES
68 gEfiDebugPortProtocolGuid | PcdDevicePathSupportDevicePathFromText OR PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
69
70 [FeaturePcd]
71 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText
72 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText
73
74 [Depex]
75 TRUE