blob: 0127841733721a52ac1c83b7d81c1ded2231f3f7 (
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
|
## @file
# Initializes Secure Boot default keys
#
# Copyright (c) 2021, ARM Ltd. All rights reserved.<BR>
# Copyright (c) 2021, Semihalf All rights reserved.<BR>
# Copyright (C) 2023-2025 Advanced Micro Devices, Inc. All rights reserved.
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 1.29
BASE_NAME = SecureBootDefaultKeysInit
FILE_GUID = 384D1860-7306-11F0-B8B4-F53A5CB787AC
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
ENTRY_POINT = SecureBootDefaultKeysInitEntry
[Sources]
SecureBootDefaultKeysInit.c
[Packages]
MdeModulePkg/MdeModulePkg.dec
MdePkg/MdePkg.dec
SecurityPkg/SecurityPkg.dec
[LibraryClasses]
DebugLib
DxeServicesLib
SecureBootVariableLib
SecureBootVariableProvisionLib
UefiBootServicesTableLib
UefiDriverEntryPoint
[Guids]
gDefaultdbFileGuid
gDefaultdbxFileGuid
gDefaultKEKFileGuid
gDefaultPKFileGuid
gEfiCertPkcs7Guid
gEfiCertX509Guid
gEfiCustomModeEnableGuid
gEfiImageSecurityDatabaseGuid
gEfiSecureBootEnableDisableGuid
[Depex]
gEfiVariableArchProtocolGuid AND
gEfiVariableWriteArchProtocolGuid
|