• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Include all platform action which can be customized by IBV/OEM.
3#
4#  Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.<BR>
5#  This program and the accompanying materials
6#  are licensed and made available under the terms and conditions of the BSD License
7#  which accompanies this distribution.  The full text of the license may be found at
8#  http://opensource.org/licenses/bsd-license.php
9#
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13##
14
15[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = PlatformBootManagerLib
18  FILE_GUID                      = EC67889B-9E62-4c81-8CA0-86E6A6EEE61A
19  MODULE_TYPE                    = DXE_DRIVER
20  VERSION_STRING                 = 1.0
21  LIBRARY_CLASS                  = PlatformBootManagerLib|DXE_DRIVER
22  CONSTRUCTOR                    = InitializePlatformBootManagerLib
23
24#
25# The following information is for reference only and not required by the build tools.
26#
27#  VALID_ARCHITECTURES           = IA32 X64 EBC
28#
29
30[Sources]
31  PlatformData.c
32  PlatformBootManager.c
33  PlatformBootManager.h
34
35[Packages]
36  MdePkg/MdePkg.dec
37  MdeModulePkg/MdeModulePkg.dec
38  IntelFrameworkPkg/IntelFrameworkPkg.dec
39  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
40  SourceLevelDebugPkg/SourceLevelDebugPkg.dec
41  QuarkPlatformPkg/QuarkPlatformPkg.dec
42  SecurityPkg/SecurityPkg.dec
43  SignedCapsulePkg/SignedCapsulePkg.dec
44
45[LibraryClasses]
46  BaseLib
47  BaseMemoryLib
48  PcdLib
49  DebugLib
50  DevicePathLib
51  MemoryAllocationLib
52  UefiBootServicesTableLib
53  UefiLib
54  UefiBootManagerLib
55  PrintLib
56  HobLib
57  CapsuleLib
58  DxeServicesLib
59
60[Protocols]
61  gEfiFirmwareVolume2ProtocolGuid
62  gEfiAcpiS3SaveProtocolGuid
63  gEfiDxeSmmReadyToLockProtocolGuid
64  gEsrtManagementProtocolGuid
65
66[Guids]
67  gEfiPcAnsiGuid
68  gEfiVT100Guid
69  gEfiVT100PlusGuid
70  gEfiVTUTF8Guid
71  gEfiTtyTermGuid
72  gEfiEndOfDxeEventGroupGuid
73
74[Pcd]
75  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate
76  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits
77  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity
78  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits
79  gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType
80  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootState
81  gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleReset
82  gEfiSignedCapsulePkgTokenSpaceGuid.PcdEdkiiRsa2048Sha256TestPublicKeyFileGuid
83  gEfiSignedCapsulePkgTokenSpaceGuid.PcdEdkiiPkcs7TestPublicKeyFileGuid
84  gEfiSecurityPkgTokenSpaceGuid.PcdRsa2048Sha256PublicKeyBuffer
85  gEfiSecurityPkgTokenSpaceGuid.PcdPkcs7CertBuffer
86  gEfiMdeModulePkgTokenSpaceGuid.PcdTestKeyUsed
87
88