Last change
on this file since 85716 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.6 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Instance of Device Path Library based on Device Path Utilities Protocol.
|
---|
3 | #
|
---|
4 | # Device Path Library that layers on top of the UEFI 2.0 Device Path Utilities Protocol.
|
---|
5 | # This library is not available for EFI 1.10 modules.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = UefiDevicePathLibDevicePathProtocol
|
---|
17 | MODULE_UNI_FILE = UefiDevicePathLibDevicePathProtocol.uni
|
---|
18 | FILE_GUID = 050EB8C6-C12E-4b86-892B-40985E8B3137
|
---|
19 | MODULE_TYPE = UEFI_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = DevicePathLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER SMM_CORE
|
---|
22 |
|
---|
23 | CONSTRUCTOR = DevicePathLibConstructor
|
---|
24 |
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | UefiDevicePathLib.c
|
---|
31 |
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 |
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | UefiBootServicesTableLib
|
---|
39 | BaseMemoryLib
|
---|
40 | MemoryAllocationLib
|
---|
41 | BaseLib
|
---|
42 | DebugLib
|
---|
43 | PcdLib
|
---|
44 |
|
---|
45 | [Protocols]
|
---|
46 | gEfiDevicePathProtocolGuid ## SOMETIMES_CONSUMES
|
---|
47 | gEfiDevicePathUtilitiesProtocolGuid ## CONSUMES
|
---|
48 | gEfiDevicePathToTextProtocolGuid ## SOMETIMES_CONSUMES
|
---|
49 | gEfiDevicePathFromTextProtocolGuid ## SOMETIMES_CONSUMES
|
---|
50 |
|
---|
51 | [Pcd]
|
---|
52 | gEfiMdePkgTokenSpaceGuid.PcdMaximumDevicePathNodeCount ## SOMETIMES_CONSUMES
|
---|
53 |
|
---|
54 | [Depex.common.DXE_DRIVER, Depex.common.DXE_RUNTIME_DRIVER, Depex.common.DXE_SAL_DRIVER, Depex.common.DXE_SMM_DRIVER]
|
---|
55 | gEfiDevicePathUtilitiesProtocolGuid
|
---|
56 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.