Last change
on this file since 80721 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.7 KB
|
Line | |
---|
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 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = DevicePathDxe
|
---|
17 | MODULE_UNI_FILE = DevicePathDxe.uni
|
---|
18 | FILE_GUID = 9B680FCE-AD6B-4F3A-B60B-F59899003443
|
---|
19 | MODULE_TYPE = DXE_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | ENTRY_POINT = DevicePathEntryPoint
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | DevicePath.c
|
---|
31 |
|
---|
32 | [Packages]
|
---|
33 | MdePkg/MdePkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | DevicePathLib
|
---|
38 | UefiBootServicesTableLib
|
---|
39 | UefiDriverEntryPoint
|
---|
40 |
|
---|
41 | [Protocols]
|
---|
42 | gEfiDevicePathToTextProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText ## SOMETIMES_PRODUCES
|
---|
43 | gEfiDevicePathFromTextProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_PRODUCES
|
---|
44 | gEfiDevicePathUtilitiesProtocolGuid ## PRODUCES
|
---|
45 |
|
---|
46 | [FeaturePcd]
|
---|
47 | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText ## CONSUMES
|
---|
48 | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## CONSUMES
|
---|
49 |
|
---|
50 | [Depex]
|
---|
51 | TRUE
|
---|
52 |
|
---|
53 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
54 | DevicePathDxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.