1 | ## @file
|
---|
2 | # Instance of Device Path Library based on Device Path Protocol.
|
---|
3 | #
|
---|
4 | # Device Path Library that layers on top of the UEFI 2.0 Device Path Protocol.
|
---|
5 | # If the DevicePathFromText/DevicePathToText protocol doesn't exist, the library
|
---|
6 | # uses its internal conversion logic.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = UefiDevicePathLibOptionalDevicePathProtocol
|
---|
18 | MODULE_UNI_FILE = UefiDevicePathLibOptionalDevicePathProtocol.uni
|
---|
19 | FILE_GUID = 3E1C696D-FCF0-45a7-85A7-E86C2A1C1080
|
---|
20 | MODULE_TYPE = UEFI_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | LIBRARY_CLASS = DevicePathLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER SMM_CORE
|
---|
23 |
|
---|
24 | CONSTRUCTOR = UefiDevicePathLibOptionalDevicePathProtocolConstructor
|
---|
25 |
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | DevicePathUtilities.c
|
---|
32 | DevicePathToText.c
|
---|
33 | DevicePathFromText.c
|
---|
34 | UefiDevicePathLibOptionalDevicePathProtocol.c
|
---|
35 | UefiDevicePathLib.h
|
---|
36 |
|
---|
37 | [Packages]
|
---|
38 | MdePkg/MdePkg.dec
|
---|
39 |
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | BaseLib
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | MemoryAllocationLib
|
---|
45 | DebugLib
|
---|
46 | BaseMemoryLib
|
---|
47 | PcdLib
|
---|
48 | PrintLib
|
---|
49 |
|
---|
50 | [Guids]
|
---|
51 | ## SOMETIMES_CONSUMES ## GUID
|
---|
52 | gEfiVTUTF8Guid
|
---|
53 | ## SOMETIMES_CONSUMES ## GUID
|
---|
54 | gEfiVT100Guid
|
---|
55 | ## SOMETIMES_CONSUMES ## GUID
|
---|
56 | gEfiVT100PlusGuid
|
---|
57 | ## SOMETIMES_CONSUMES ## GUID
|
---|
58 | gEfiPcAnsiGuid
|
---|
59 | ## SOMETIMES_CONSUMES ## GUID
|
---|
60 | gEfiUartDevicePathGuid
|
---|
61 | ## SOMETIMES_CONSUMES ## GUID
|
---|
62 | gEfiSasDevicePathGuid
|
---|
63 | ## SOMETIMES_CONSUMES ## GUID
|
---|
64 | gEfiVirtualDiskGuid
|
---|
65 | ## SOMETIMES_CONSUMES ## GUID
|
---|
66 | gEfiVirtualCdGuid
|
---|
67 | ## SOMETIMES_CONSUMES ## GUID
|
---|
68 | gEfiPersistentVirtualDiskGuid
|
---|
69 | ## SOMETIMES_CONSUMES ## GUID
|
---|
70 | gEfiPersistentVirtualCdGuid
|
---|
71 |
|
---|
72 | [Protocols]
|
---|
73 | gEfiDevicePathProtocolGuid ## SOMETIMES_CONSUMES
|
---|
74 | gEfiDevicePathUtilitiesProtocolGuid ## CONSUMES
|
---|
75 | gEfiDevicePathToTextProtocolGuid ## SOMETIMES_CONSUMES
|
---|
76 | gEfiDevicePathFromTextProtocolGuid ## SOMETIMES_CONSUMES
|
---|
77 | gEfiDebugPortProtocolGuid ## UNDEFINED
|
---|
78 |
|
---|
79 | [Pcd]
|
---|
80 | gEfiMdePkgTokenSpaceGuid.PcdMaximumDevicePathNodeCount ## SOMETIMES_CONSUMES
|
---|
81 |
|
---|
82 | [Depex.common.DXE_DRIVER, Depex.common.DXE_RUNTIME_DRIVER, Depex.common.DXE_SAL_DRIVER, Depex.common.DXE_SMM_DRIVER]
|
---|
83 | gEfiDevicePathUtilitiesProtocolGuid
|
---|
84 |
|
---|