Last change
on this file since 94368 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.4 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module produces EFI TLS Protocol, EFI TLS Service Binding Protocol and
|
---|
3 | # EFI TLS Configuration Protocol.
|
---|
4 | #
|
---|
5 | # This module produces EFI TLS (Transport Layer Security) Protocol and EFI TLS
|
---|
6 | # Service Binding Protocol, to provide TLS services.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = TlsDxe
|
---|
18 | FILE_GUID = 3aceb0c0-3c72-11e4-9a56-74d435052646
|
---|
19 | MODULE_TYPE = UEFI_DRIVER
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | ENTRY_POINT = TlsDriverEntryPoint
|
---|
22 | UNLOAD_IMAGE = TlsUnload
|
---|
23 | MODULE_UNI_FILE = TlsDxe.uni
|
---|
24 |
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Packages]
|
---|
30 | MdePkg/MdePkg.dec
|
---|
31 | NetworkPkg/NetworkPkg.dec
|
---|
32 | CryptoPkg/CryptoPkg.dec
|
---|
33 |
|
---|
34 | [Sources]
|
---|
35 | TlsDriver.h
|
---|
36 | TlsDriver.c
|
---|
37 | TlsProtocol.c
|
---|
38 | TlsConfigProtocol.c
|
---|
39 | TlsImpl.h
|
---|
40 | TlsImpl.c
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | UefiDriverEntryPoint
|
---|
44 | UefiBootServicesTableLib
|
---|
45 | MemoryAllocationLib
|
---|
46 | BaseMemoryLib
|
---|
47 | BaseLib
|
---|
48 | UefiLib
|
---|
49 | DebugLib
|
---|
50 | BaseCryptLib
|
---|
51 | TlsLib
|
---|
52 |
|
---|
53 | [Protocols]
|
---|
54 | gEfiTlsServiceBindingProtocolGuid ## PRODUCES
|
---|
55 | gEfiTlsProtocolGuid ## PRODUCES
|
---|
56 | gEfiTlsConfigurationProtocolGuid ## PRODUCES
|
---|
57 |
|
---|
58 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
59 | TlsDxeExtra.uni
|
---|
60 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.