blob: 74b4af45a41cbbbe9897c18cbde5f11fb62b7fb0 (
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
|
## @file
# User Authentication Standalone MM Dxe Driver.
#
# This Driver mainly locks the password variable.
#
# Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x00010005
BASE_NAME = UserAuthenticationStandaloneMmDxe
FILE_GUID = 08fc98fb-1cec-45c6-ad02-542096191054
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
ENTRY_POINT = UserAuthenticationStandaloneMmDxeEntry
[Sources]
UserAuthenticationStandaloneMmDxe.c
UserAuthenticationVariableLock.c
[Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
UserAuthFeaturePkg/UserAuthFeaturePkg.dec
[LibraryClasses]
UefiBootServicesTableLib
UefiDriverEntryPoint
DebugLib
PrintLib
VariablePolicyHelperLib
[Guids]
gUserAuthenticationGuid ## CONSUMES ## GUID
[Protocols]
gEdkiiVariablePolicyProtocolGuid ## CONSUMES
[Depex]
gEdkiiVariableLockProtocolGuid
|