1 | ## @file
|
---|
2 | # PEI LockBox library instance.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # This program and the accompanying materials
|
---|
7 | # are licensed and made available under the terms and conditions
|
---|
8 | # of the BSD License which accompanies this distribution. The
|
---|
9 | # full text of the license may be found at
|
---|
10 | # http://opensource.org/licenses/bsd-license.php
|
---|
11 | #
|
---|
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
14 | #
|
---|
15 | ##
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | INF_VERSION = 0x00010005
|
---|
19 | BASE_NAME = SmmLockBoxPeiLib
|
---|
20 | MODULE_UNI_FILE = SmmLockBoxPeiLib.uni
|
---|
21 | FILE_GUID = 5F5E6140-E7BA-4bd6-B85F-236B5BCD8E1E
|
---|
22 | MODULE_TYPE = PEIM
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | LIBRARY_CLASS = LockBoxLib|PEIM
|
---|
25 |
|
---|
26 | #
|
---|
27 | # The following information is for reference only and not required by the build tools.
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32 X64
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | SmmLockBoxPeiLib.c
|
---|
34 | SmmLockBoxLibPrivate.h
|
---|
35 |
|
---|
36 | [Packages]
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 | MdeModulePkg/MdeModulePkg.dec
|
---|
39 |
|
---|
40 | [LibraryClasses]
|
---|
41 | PeiServicesTablePointerLib
|
---|
42 | PeiServicesLib
|
---|
43 | BaseLib
|
---|
44 | BaseMemoryLib
|
---|
45 | HobLib
|
---|
46 | DebugLib
|
---|
47 |
|
---|
48 | [FeaturePcd]
|
---|
49 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode ## CONSUMES
|
---|
50 |
|
---|
51 | [Guids]
|
---|
52 | ## SOMETIMES_CONSUMES ## UNDEFINED # Used to do smm communication
|
---|
53 | ## SOMETIMES_CONSUMES ## UNDEFINED # SmmSystemTable
|
---|
54 | gEfiSmmLockBoxCommunicationGuid
|
---|
55 | gEfiAcpiVariableGuid ## SOMETIMES_CONSUMES ## HOB
|
---|
56 |
|
---|
57 | [Ppis]
|
---|
58 | gEfiPeiSmmCommunicationPpiGuid ## CONSUMES
|
---|
59 | gPeiSmmAccessPpiGuid ## SOMETIMES_CONSUMES
|
---|