]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
Remove some useless EDK_RELEASE_VERSION, EFI_SPECIFICATION_VERSION ,and review VALID_...
[mirror_edk2.git] / MdeModulePkg / Universal / DevicePathDxe / DevicePathDxe.inf
1 #/** @file
2 #
3 # Component description file for Device Path Driver.
4 #
5 # This driver implement these three UEFI deveice path protocols (
6 # DevicePathUtilities, DevicePahtToText and DevicePathFromText) and install them.
7 #
8 # Copyright (c) 2006 - 2008, Intel Corporation. <BR>
9 # All rights reserved. This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 #
14 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #
17 #**/
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = DevicePathDxe
22 FILE_GUID = 9B680FCE-AD6B-4F3A-B60B-F59899003443
23 MODULE_TYPE = DXE_DRIVER
24 VERSION_STRING = 1.0
25 ENTRY_POINT = DevicePathEntryPoint
26
27 #
28 # The following information is for reference only and not required by the build tools.
29 #
30 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
31 #
32
33 [Sources.common]
34 DevicePathUtilities.c
35 DevicePathToText.c
36 DevicePathFromText.c
37 DevicePath.h
38 DevicePath.c
39
40 [Packages]
41 MdeModulePkg/MdeModulePkg.dec
42 MdePkg/MdePkg.dec
43
44 [LibraryClasses]
45 PcdLib
46 DevicePathLib
47 UefiBootServicesTableLib
48 MemoryAllocationLib
49 BaseMemoryLib
50 BaseLib
51 UefiDriverEntryPoint
52 PrintLib
53 DebugLib
54
55 [Guids]
56 gEfiVTUTF8Guid # ALWAYS_CONSUMED
57 gEfiVT100Guid # ALWAYS_CONSUMED
58 gEfiVT100PlusGuid # ALWAYS_CONSUMED
59 gEfiPcAnsiGuid # ALWAYS_CONSUMED
60
61 [Protocols]
62 gEfiDevicePathToTextProtocolGuid # PROTOCOL ALWAYS_PRODUCED
63 gEfiDevicePathFromTextProtocolGuid # PROTOCOL ALWAYS_PRODUCED
64 gEfiDevicePathUtilitiesProtocolGuid # PROTOCOL ALWAYS_PRODUCED
65 gEfiDebugPortProtocolGuid # PROTOCOL ALWAYS_CONSUMED
66
67 [FeaturePcd.common]
68 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText
69 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText
70
71 [Depex]
72 TRUE
73