1 | ## @file
|
---|
2 | # Component name for SecureBoot configuration module for OVMF.
|
---|
3 | #
|
---|
4 | # Need custom SecureBootConfigDxe for OVMF that does not force
|
---|
5 | # resets after PK changes since OVMF doesn't have persistent variables
|
---|
6 | #
|
---|
7 | # Copyright (c) 2011 - 2013, Intel Corporation. All rights reserved.<BR>
|
---|
8 | # This program and the accompanying materials
|
---|
9 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
10 | # which accompanies this distribution. The full text of the license may be found at
|
---|
11 | # http://opensource.org/licenses/bsd-license.php
|
---|
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 = SecureBootConfigDxe
|
---|
20 | FILE_GUID = 68E2BC17-198D-41f1-8213-065E3A2A7C12
|
---|
21 | MODULE_TYPE = DXE_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | ENTRY_POINT = SecureBootConfigDriverEntryPoint
|
---|
24 | UNLOAD_IMAGE = SecureBootConfigDriverUnload
|
---|
25 |
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | SecureBootConfigDriver.c
|
---|
32 | SecureBootConfigImpl.c
|
---|
33 | SecureBootConfigFileExplorer.c
|
---|
34 | SecureBootConfigDevicePath.c
|
---|
35 | SecureBootConfigMisc.c
|
---|
36 | SecureBootConfigImpl.h
|
---|
37 | SecureBootConfig.vfr
|
---|
38 | SecureBootConfigStrings.uni
|
---|
39 | SecureBootConfigNvData.h
|
---|
40 |
|
---|
41 | [Packages]
|
---|
42 | MdePkg/MdePkg.dec
|
---|
43 | MdeModulePkg/MdeModulePkg.dec
|
---|
44 | SecurityPkg/SecurityPkg.dec
|
---|
45 | CryptoPkg/CryptoPkg.dec
|
---|
46 |
|
---|
47 | [LibraryClasses]
|
---|
48 | BaseLib
|
---|
49 | BaseMemoryLib
|
---|
50 | BaseCryptLib
|
---|
51 | MemoryAllocationLib
|
---|
52 | UefiLib
|
---|
53 | UefiBootServicesTableLib
|
---|
54 | UefiRuntimeServicesTableLib
|
---|
55 | UefiDriverEntryPoint
|
---|
56 | UefiHiiServicesLib
|
---|
57 | DebugLib
|
---|
58 | HiiLib
|
---|
59 | PlatformSecureLib
|
---|
60 | DevicePathLib
|
---|
61 |
|
---|
62 | [Guids]
|
---|
63 | gEfiIfrTianoGuid
|
---|
64 | gEfiCustomModeEnableGuid
|
---|
65 | gEfiSecureBootEnableDisableGuid
|
---|
66 | gSecureBootConfigFormSetGuid
|
---|
67 | gEfiCertPkcs7Guid
|
---|
68 | gEfiCertRsa2048Guid ## CONSUMES
|
---|
69 | gEfiCertX509Guid ## CONSUMES
|
---|
70 | gEfiCertSha1Guid ## CONSUMES
|
---|
71 | gEfiCertSha256Guid ## CONSUMES
|
---|
72 | gEfiCertTypeRsa2048Sha256Guid ## CONSUMES
|
---|
73 | gEfiImageSecurityDatabaseGuid ## CONSUMES
|
---|
74 | gEfiFileSystemVolumeLabelInfoIdGuid ## CONSUMES
|
---|
75 | gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid
|
---|
76 | gEfiFileInfoGuid ## CONSUMES ## GUID
|
---|
77 |
|
---|
78 | [Protocols]
|
---|
79 | gEfiHiiConfigAccessProtocolGuid ## PRODUCES
|
---|
80 | gEfiHiiConfigRoutingProtocolGuid ## CONSUMES
|
---|
81 | gEfiSimpleFileSystemProtocolGuid ## PROTOCOL CONSUMES
|
---|
82 | gEfiLoadFileProtocolGuid ## PROTOCOL CONSUMES
|
---|
83 | gEfiBlockIoProtocolGuid ## PROTOCOL CONSUMES
|
---|
84 | gEfiDevicePathProtocolGuid ## PROTOCOL CONSUMES
|
---|
85 |
|
---|
86 | [Depex]
|
---|
87 | gEfiHiiConfigRoutingProtocolGuid AND
|
---|
88 | gEfiHiiDatabaseProtocolGuid AND
|
---|
89 | gEfiVariableArchProtocolGuid AND
|
---|
90 | gEfiVariableWriteArchProtocolGuid
|
---|