2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-12-23 17:20:43 +01:00
|
|
|
# Device path driver that produces three UEFI device path protocols.
|
2008-07-16 03:10:45 +02:00
|
|
|
#
|
2008-12-23 17:20:43 +01:00
|
|
|
# This driver produces Device Path Utilities protocol and optionally
|
|
|
|
# DevicePahtToText and DevicePathFromText protocols based on feature flags
|
|
|
|
# PcdDevicePathSupportDevicePathToText & PcdDevicePathSupportDevicePathFromText
|
|
|
|
# respectively.
|
2008-07-16 03:10:45 +02:00
|
|
|
#
|
2011-02-12 02:53:24 +01:00
|
|
|
# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:33:45 +02:00
|
|
|
# This program and the accompanying materials
|
2007-07-05 09:05:28 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-04-09 07:50:10 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-07-05 09:05:28 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-07-16 03:10:45 +02:00
|
|
|
#
|
2007-07-05 09:05:28 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-07-16 03:10:45 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-07-17 04:26:33 +02:00
|
|
|
BASE_NAME = DevicePathDxe
|
2007-07-05 09:05:28 +02:00
|
|
|
FILE_GUID = 9B680FCE-AD6B-4F3A-B60B-F59899003443
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = DevicePathEntryPoint
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-05 09:05:28 +02:00
|
|
|
DevicePathUtilities.c
|
2011-03-14 09:43:59 +01:00
|
|
|
DevicePathToText.c ||||gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText
|
|
|
|
DevicePathFromText.c ||||gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText
|
2007-07-05 09:05:28 +02:00
|
|
|
DevicePath.h
|
|
|
|
DevicePath.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PcdLib
|
|
|
|
DevicePathLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
BaseLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
PrintLib
|
|
|
|
DebugLib
|
|
|
|
|
|
|
|
[Guids]
|
2011-03-14 09:43:59 +01:00
|
|
|
gEfiVTUTF8Guid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiVT100Guid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiVT100PlusGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiPcAnsiGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiUartDevicePathGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiSasDevicePathGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
2008-12-23 17:20:43 +01:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
[Protocols]
|
2011-03-14 09:43:59 +01:00
|
|
|
gEfiDevicePathToTextProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText ## PRODUCES
|
|
|
|
gEfiDevicePathFromTextProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## PRODUCES
|
2011-02-12 02:53:24 +01:00
|
|
|
gEfiDevicePathUtilitiesProtocolGuid ## PRODUCES
|
2011-03-14 09:43:59 +01:00
|
|
|
gEfiDebugPortProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText OR gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText ## SOMETIMES_CONSUMES ## GUID
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[FeaturePcd]
|
2007-08-30 11:11:54 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2008-08-18 10:22:05 +02:00
|
|
|
[Depex]
|
|
|
|
TRUE
|