1 | #/** @file
|
---|
2 | #
|
---|
3 | # Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
|
---|
4 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
5 | #
|
---|
6 | #**/
|
---|
7 |
|
---|
8 | [Defines]
|
---|
9 | INF_VERSION = 0x00010005
|
---|
10 | BASE_NAME = EmbeddedMonotonicCounter
|
---|
11 | FILE_GUID = FCABE6A7-7953-4A84-B7EC-D29E89B62E87
|
---|
12 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
13 | VERSION_STRING = 1.0
|
---|
14 |
|
---|
15 | ENTRY_POINT = MonotonicCounterDriverInitialize
|
---|
16 |
|
---|
17 | [Sources.common]
|
---|
18 | EmbeddedMonotonicCounter.c
|
---|
19 |
|
---|
20 | [Packages]
|
---|
21 | MdePkg/MdePkg.dec
|
---|
22 |
|
---|
23 | [LibraryClasses]
|
---|
24 | BaseLib
|
---|
25 | DebugLib
|
---|
26 | UefiBootServicesTableLib
|
---|
27 | UefiDriverEntryPoint
|
---|
28 | UefiRuntimeServicesTableLib
|
---|
29 |
|
---|
30 | [Protocols]
|
---|
31 | gEfiMonotonicCounterArchProtocolGuid
|
---|
32 |
|
---|
33 | [Depex]
|
---|
34 | TRUE
|
---|
35 |
|
---|