1 | ## @file
|
---|
2 | # This module produces the UEFI boot service GetNextMonotonicCount() and runtime service GetNextHighMonotonicCount().
|
---|
3 | #
|
---|
4 | # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # This program and the accompanying materials
|
---|
7 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
8 | # which accompanies this distribution. The full text of the license may be found at
|
---|
9 | # http://opensource.org/licenses/bsd-license.php
|
---|
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 | #
|
---|
13 | #
|
---|
14 | ##
|
---|
15 |
|
---|
16 | [Defines]
|
---|
17 | INF_VERSION = 0x00010005
|
---|
18 | BASE_NAME = MonotonicCounterRuntimeDxe
|
---|
19 | MODULE_UNI_FILE = MonotonicCounterRuntimeDxe.uni
|
---|
20 | FILE_GUID = AD608272-D07F-4964-801E-7BD3B7888652
|
---|
21 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | ENTRY_POINT = MonotonicCounterDriverInitialize
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | MonotonicCounter.c
|
---|
33 |
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdePkg/MdePkg.dec
|
---|
37 | MdeModulePkg/MdeModulePkg.dec
|
---|
38 |
|
---|
39 | [LibraryClasses]
|
---|
40 | UefiRuntimeServicesTableLib
|
---|
41 | UefiBootServicesTableLib
|
---|
42 | DebugLib
|
---|
43 | UefiRuntimeLib
|
---|
44 | UefiDriverEntryPoint
|
---|
45 | BaseLib
|
---|
46 |
|
---|
47 | [Guids]
|
---|
48 | ## PRODUCES ## Variable:L"MTC"
|
---|
49 | ## CONSUMES ## Variable:L"MTC"
|
---|
50 | gMtcVendorGuid
|
---|
51 |
|
---|
52 | [Protocols]
|
---|
53 | gEfiMonotonicCounterArchProtocolGuid ## PRODUCES
|
---|
54 |
|
---|
55 |
|
---|
56 | [Depex]
|
---|
57 | gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
|
---|
58 |
|
---|
59 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
60 | MonotonicCounterRuntimeDxeExtra.uni
|
---|