Last change
on this file since 85718 was 85718, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.2 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Produces the EDK II SMM Crypto Protocol using the library services from
|
---|
3 | # BaseCryptLib and TlsLib. PcdCryptoServiceFamilyEnable is used to enable the
|
---|
4 | # subset of available services.
|
---|
5 | #
|
---|
6 | # Copyright (C) Microsoft Corporation. All rights reserved.
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x0001001B
|
---|
13 | PI_SPECIFICATION_VERSION = 0x00010014
|
---|
14 | BASE_NAME = CryptoSmm
|
---|
15 | MODULE_UNI_FILE = Crypto.uni
|
---|
16 | FILE_GUID = 391B853F-F488-479B-A3D6-870766C7A38F
|
---|
17 | MODULE_TYPE = DXE_SMM_DRIVER
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | ENTRY_POINT = CryptoSmmEntry
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | Crypto.c
|
---|
29 | CryptoSmm.c
|
---|
30 |
|
---|
31 | [Packages]
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 | CryptoPkg/CryptoPkg.dec
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | UefiDriverEntryPoint
|
---|
37 | SmmServicesTableLib
|
---|
38 | DebugLib
|
---|
39 | BaseCryptLib
|
---|
40 | TlsLib
|
---|
41 |
|
---|
42 | [Protocols]
|
---|
43 | gEdkiiSmmCryptoProtocolGuid ## PRODUCES
|
---|
44 |
|
---|
45 | [Pcd]
|
---|
46 | gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable ## CONSUMES
|
---|
47 |
|
---|
48 | [Depex]
|
---|
49 | TRUE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.