blob: 14931a2925d5ff4a25f6f16658c6eff6ccada256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
## @file
# LockBox Dependency DXE Library.
#
# By installing the LockBox protocol with the gEfiLockBoxProtocolGuid,
# it signals that the LockBox API is fully operational and ready for use.
#
# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x00010006
BASE_NAME = SmmLockBoxMmDependency
FILE_GUID = c45ce910-7f8b-4f49-88e2-2c26c5743ee2
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
LIBRARY_CLASS = NULL
CONSTRUCTOR = SmmLockBoxMmDependencyConstructor
[Sources]
SmmLockBoxMmDependency.c
[Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
[Protocols]
gEfiLockBoxProtocolGuid
[LibraryClasses]
BaseLib
UefiBootServicesTableLib
|