Last change
on this file since 48674 was 48674, checked in by vboxsync, 12 years ago |
EFI: Export newly imported tinaocore UEFI sources to OSE.
|
-
Property svn:eol-style
set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module produces the UEFI boot service GetNextMonotonicCount()
|
---|
3 | # and runtime service GetNextHighMonotonicCount().
|
---|
4 | #
|
---|
5 | # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # This program and the accompanying materials
|
---|
8 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
9 | # which accompanies this distribution. The full text of the license may be found at
|
---|
10 | # http://opensource.org/licenses/bsd-license.php
|
---|
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
13 | #
|
---|
14 | #
|
---|
15 | ##
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | INF_VERSION = 0x00010005
|
---|
19 | BASE_NAME = MonotonicCounterRuntimeDxe
|
---|
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 | gMtcVendorGuid
|
---|
49 |
|
---|
50 | [Protocols]
|
---|
51 | gEfiMonotonicCounterArchProtocolGuid ## PRODUCES
|
---|
52 |
|
---|
53 |
|
---|
54 | [Depex]
|
---|
55 | gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.