2011-05-11 20:31:20 +02:00
|
|
|
## @file
|
2018-08-30 03:53:49 +02:00
|
|
|
# Platfrom Boot Manager library
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
|
|
|
# Do platform action customized by IBV/OEM.
|
2018-08-23 11:35:14 +02:00
|
|
|
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2011-06-28 18:50:26 +02:00
|
|
|
# Portions copyright (c) 2011, Apple Inc. All rights reserved.
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
2019-04-04 01:03:44 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2018-08-30 03:53:49 +02:00
|
|
|
BASE_NAME = PlatformBmLib
|
|
|
|
FILE_GUID = 59569181-CBF8-2E44-9C3E-C2AB2F5608E1
|
2011-05-11 20:31:20 +02:00
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2018-08-30 03:53:49 +02:00
|
|
|
LIBRARY_CLASS = PlatformBootManagerLib|DXE_DRIVER
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
2018-06-29 05:22:32 +02:00
|
|
|
# The following information is for reference only and not required by the build tools.
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
2018-08-30 03:53:49 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
2018-08-30 03:53:49 +02:00
|
|
|
PlatformBm.c
|
|
|
|
PlatformBm.h
|
|
|
|
PlatformBmData.c
|
|
|
|
PlatformBmMemoryTest.c
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2011-06-28 18:47:23 +02:00
|
|
|
EmulatorPkg/EmulatorPkg.dec
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
|
|
|
PcdLib
|
2018-08-30 03:53:49 +02:00
|
|
|
UefiBootManagerLib
|
2011-05-11 20:31:20 +02:00
|
|
|
DevicePathLib
|
2018-08-23 11:35:14 +02:00
|
|
|
UefiLib
|
2018-08-30 03:53:49 +02:00
|
|
|
BootLogoLib
|
|
|
|
HobLib
|
|
|
|
HiiLib
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEmuSystemConfigGuid
|
2018-08-23 11:35:14 +02:00
|
|
|
gEfiEndOfDxeEventGroupGuid
|
2011-05-11 20:31:20 +02:00
|
|
|
|
2018-08-30 03:53:49 +02:00
|
|
|
[Protocols]
|
|
|
|
gEfiGenericMemTestProtocolGuid
|
|
|
|
|
2011-05-11 20:31:20 +02:00
|
|
|
[Pcd]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn
|
2015-05-06 05:28:12 +02:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut
|
2018-08-30 03:53:49 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand
|
2011-06-28 18:50:26 +02:00
|
|
|
|
2011-05-11 20:31:20 +02:00
|
|
|
[Depex]
|
|
|
|
gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
|