Last change
on this file was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module produces the UEFI boot service GetNextMonotonicCount() and runtime service GetNextHighMonotonicCount().
|
---|
3 | #
|
---|
4 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = MonotonicCounterRuntimeDxe
|
---|
14 | MODULE_UNI_FILE = MonotonicCounterRuntimeDxe.uni
|
---|
15 | FILE_GUID = AD608272-D07F-4964-801E-7BD3B7888652
|
---|
16 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | ENTRY_POINT = MonotonicCounterDriverInitialize
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | MonotonicCounter.c
|
---|
28 |
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | UefiRuntimeServicesTableLib
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | DebugLib
|
---|
38 | UefiRuntimeLib
|
---|
39 | UefiDriverEntryPoint
|
---|
40 | BaseLib
|
---|
41 |
|
---|
42 | [Guids]
|
---|
43 | ## PRODUCES ## Variable:L"MTC"
|
---|
44 | ## CONSUMES ## Variable:L"MTC"
|
---|
45 | gMtcVendorGuid
|
---|
46 |
|
---|
47 | [Protocols]
|
---|
48 | gEfiMonotonicCounterArchProtocolGuid ## PRODUCES
|
---|
49 |
|
---|
50 |
|
---|
51 | [Depex]
|
---|
52 | gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
|
---|
53 |
|
---|
54 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
55 | MonotonicCounterRuntimeDxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.