1 | ## @file
|
---|
2 | # Instance of Device Path Library based on Memory Allocation Library.
|
---|
3 | #
|
---|
4 | # Device Path Library that layers on top of the Memory Allocation Library.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # This program and the accompanying materials
|
---|
9 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
10 | # which accompanies this distribution. The full text of the license may be found at
|
---|
11 | # http://opensource.org/licenses/bsd-license.php.
|
---|
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
14 | #
|
---|
15 | #
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = UefiDevicePathLib
|
---|
21 | MODULE_UNI_FILE = UefiDevicePathLib.uni
|
---|
22 | FILE_GUID = 91c1677a-e57f-4191-8b8e-eb7711a716e0
|
---|
23 | MODULE_TYPE = UEFI_DRIVER
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 | LIBRARY_CLASS = DevicePathLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER SMM_CORE
|
---|
26 |
|
---|
27 |
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | DevicePathUtilities.c
|
---|
34 | DevicePathToText.c
|
---|
35 | DevicePathFromText.c
|
---|
36 | UefiDevicePathLib.c
|
---|
37 | UefiDevicePathLib.h
|
---|
38 |
|
---|
39 | [Packages]
|
---|
40 | MdePkg/MdePkg.dec
|
---|
41 |
|
---|
42 |
|
---|
43 | [LibraryClasses]
|
---|
44 | BaseLib
|
---|
45 | MemoryAllocationLib
|
---|
46 | DebugLib
|
---|
47 | BaseMemoryLib
|
---|
48 | PcdLib
|
---|
49 | PrintLib
|
---|
50 |
|
---|
51 | [Guids]
|
---|
52 | ## SOMETIMES_CONSUMES ## GUID
|
---|
53 | gEfiVTUTF8Guid
|
---|
54 | ## SOMETIMES_CONSUMES ## GUID
|
---|
55 | gEfiVT100Guid
|
---|
56 | ## SOMETIMES_CONSUMES ## GUID
|
---|
57 | gEfiVT100PlusGuid
|
---|
58 | ## SOMETIMES_CONSUMES ## GUID
|
---|
59 | gEfiPcAnsiGuid
|
---|
60 | ## SOMETIMES_CONSUMES ## GUID
|
---|
61 | gEfiUartDevicePathGuid
|
---|
62 | ## SOMETIMES_CONSUMES ## GUID
|
---|
63 | gEfiSasDevicePathGuid
|
---|
64 |
|
---|
65 | [Protocols]
|
---|
66 | gEfiDevicePathProtocolGuid ## SOMETIMES_CONSUMES
|
---|
67 | gEfiDebugPortProtocolGuid ## UNDEFINED
|
---|
68 |
|
---|
69 | [Pcd]
|
---|
70 | gEfiMdePkgTokenSpaceGuid.PcdMaximumDevicePathNodeCount ## SOMETIMES_CONSUMES
|
---|
71 |
|
---|