blob: f2d30034ff3641c81f60c9103165c633551ff97f (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
## @file
# User Authentication Standalone Mm Driver.
#
# This driver provides SMM services for DXE user authentication module.
# This Standalone Mm driver lacks of the ability to lock the password
# variables. Need to rely on UserAuthenticationStandaloneMmDxe to lock
# the variables.
#
# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x00010005
BASE_NAME = UserAuthenticationStandaloneMm
FILE_GUID = 80130611-a67a-4631-becb-87ce22d6f165
MODULE_TYPE = MM_STANDALONE
VERSION_STRING = 1.0
PI_SPECIFICATION_VERSION = 0x00010032
ENTRY_POINT = UserAuthenticationMmEntry
[Sources]
UserAuthenticationSmm.c
UserAuthenticationStandaloneMm.c
UserAuthenticationSmm.h
KeyService.c
KeyService.h
[Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
CryptoPkg/CryptoPkg.dec
UserAuthFeaturePkg/UserAuthFeaturePkg.dec
[LibraryClasses]
StandaloneMmDriverEntryPoint
DebugLib
BaseLib
BaseMemoryLib
PrintLib
MmServicesTableLib
MemoryAllocationLib
BaseCryptLib
PlatformPasswordLib
[Guids]
gUserAuthenticationGuid ## CONSUMES ## GUID
gEfiEventExitBootServicesGuid ## CONSUMES ## Event
[Protocols]
gEdkiiVariableLockProtocolGuid ## CONSUMES
gEfiSmmVariableProtocolGuid ## CONSUMES
gEdkiiSmmExitBootServicesProtocolGuid ## CONSUMES
gEdkiiSmmLegacyBootProtocolGuid ## CONSUMES
[Depex]
gEfiSmmVariableProtocolGuid
|