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 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
10 | # This program and the accompanying materials
|
---|
11 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
12 | # which accompanies this distribution. The full text of the license may be found at
|
---|
13 | # http://opensource.org/licenses/bsd-license.php
|
---|
14 | #
|
---|
15 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
16 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
17 | #
|
---|
18 | ##
|
---|
19 |
|
---|
20 | [Defines]
|
---|
21 | INF_VERSION = 0x00010005
|
---|
22 | BASE_NAME = DevicePathDxe
|
---|
23 | MODULE_UNI_FILE = DevicePathDxe.uni
|
---|
24 | FILE_GUID = 9B680FCE-AD6B-4F3A-B60B-F59899003443
|
---|
25 | MODULE_TYPE = DXE_DRIVER
|
---|
26 | VERSION_STRING = 1.0
|
---|
27 | ENTRY_POINT = DevicePathEntryPoint
|
---|
28 |
|
---|
29 | #
|
---|
30 | # The following information is for reference only and not required by the build tools.
|
---|
31 | #
|
---|
32 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
33 | #
|
---|
34 |
|
---|
35 | [Sources]
|
---|
36 | DevicePath.c
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | MdeModulePkg/MdeModulePkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | DevicePathLib
|
---|
44 | UefiBootServicesTableLib
|
---|
45 | UefiDriverEntryPoint
|
---|
46 |
|
---|
47 | [Protocols]
|
---|
48 | gEfiDevicePathToTextProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText ## SOMETIMES_PRODUCES
|
---|
49 | gEfiDevicePathFromTextProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_PRODUCES
|
---|
50 | gEfiDevicePathUtilitiesProtocolGuid ## PRODUCES
|
---|
51 |
|
---|
52 | [FeaturePcd]
|
---|
53 | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText ## CONSUMES
|
---|
54 | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## CONSUMES
|
---|
55 |
|
---|
56 | [Depex]
|
---|
57 | TRUE
|
---|
58 |
|
---|
59 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
60 | DevicePathDxeExtra.uni
|
---|