2015-05-11 05:06:24 +02:00
|
|
|
## @file
|
|
|
|
# Include all platform action which can be customized by IBV/OEM.
|
|
|
|
#
|
2016-09-23 10:07:58 +02:00
|
|
|
# Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.<BR>
|
2016-10-03 11:28:30 +02:00
|
|
|
# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
2019-04-04 01:06:18 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2015-05-11 05:06:24 +02:00
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = PlatformBootManagerLib
|
2015-05-18 07:30:01 +02:00
|
|
|
FILE_GUID = F0D9063A-DADB-4185-85E2-D7ACDA93F7A6
|
2015-05-11 05:06:24 +02:00
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
LIBRARY_CLASS = PlatformBootManagerLib|DXE_DRIVER
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
PlatformData.c
|
|
|
|
PlatformBootManager.c
|
|
|
|
PlatformBootManager.h
|
2015-08-25 11:51:07 +02:00
|
|
|
MemoryTest.c
|
|
|
|
Strings.uni
|
2015-05-11 05:06:24 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2015-08-25 11:51:07 +02:00
|
|
|
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
2015-05-11 05:06:24 +02:00
|
|
|
Nt32Pkg/Nt32Pkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
2015-08-25 11:51:07 +02:00
|
|
|
UefiBootServicesTableLib
|
2015-05-11 05:06:24 +02:00
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
UefiLib
|
|
|
|
UefiBootManagerLib
|
|
|
|
PcdLib
|
2015-08-25 11:51:07 +02:00
|
|
|
DxeServicesLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
DevicePathLib
|
|
|
|
HiiLib
|
|
|
|
PrintLib
|
2015-11-12 06:39:39 +01:00
|
|
|
BootLogoLib
|
2015-05-11 05:06:24 +02:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiWinNtSystemConfigGuid
|
2016-10-03 11:28:30 +02:00
|
|
|
gEfiEndOfDxeEventGroupGuid
|
2015-05-11 05:06:24 +02:00
|
|
|
|
2015-08-06 10:39:30 +02:00
|
|
|
[Protocols]
|
|
|
|
gEfiGenericMemTestProtocolGuid ## CONSUMES
|
2015-08-25 11:51:07 +02:00
|
|
|
gEfiGraphicsOutputProtocolGuid ## CONSUMES
|
|
|
|
gEfiUgaDrawProtocolGuid ## CONSUMES
|
|
|
|
gEfiBootLogoProtocolGuid ## CONSUMES
|
2016-08-24 10:21:50 +02:00
|
|
|
gEfiFirmwareVolume2ProtocolGuid ## CONSUMES
|
2015-08-06 10:39:30 +02:00
|
|
|
|
2015-05-11 05:06:24 +02:00
|
|
|
[Pcd]
|
2015-08-25 11:51:07 +02:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut
|
2015-09-16 10:04:35 +02:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport
|
2015-05-11 05:06:24 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn
|
2015-09-16 10:04:35 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand
|
2015-08-25 11:51:07 +02:00
|
|
|
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootlogoOnlyEnable
|