]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
Fix the typo in last check in
[mirror_edk2.git] / MdeModulePkg / Universal / PcatRealTimeClockRuntimeDxe / PcatRealTimeClockRuntimeDxe.inf
1 #/** @file
2 # PcRtc driver to install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL.
3 #
4 # This driver provides GetTime, SetTime, GetWakeupTime, SetWakeupTime services to Runtime Service Table.
5 # Copyright (c) 2006 - 2007, Intel Corporation.
6 #
7 # All rights reserved.
8 # This software and associated documentation (if any) is furnished
9 # under a license and may only be used or copied in accordance
10 # with the terms of the license. Except as permitted by such
11 # license, no part of this software or documentation may be
12 # reproduced, stored in a retrieval system, or transmitted in any
13 # form or by any means without the express written consent of
14 # Intel Corporation.
15 #
16 #
17 #**/
18
19 ################################################################################
20 #
21 # Defines Section - statements that will be processed to create a Makefile.
22 #
23 ################################################################################
24 [Defines]
25 INF_VERSION = 0x00010005
26 BASE_NAME = PcRtc
27 FILE_GUID = 378D7B65-8DA9-4773-B6E4-A47826A833E1
28 MODULE_TYPE = DXE_RUNTIME_DRIVER
29 VERSION_STRING = 1.0
30 EDK_RELEASE_VERSION = 0x00020000
31 EFI_SPECIFICATION_VERSION = 0x00020000
32
33 ENTRY_POINT = InitializePcRtc
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64 EBC
39 #
40
41 ################################################################################
42 #
43 # Sources Section - list of files that are required for the build to succeed.
44 #
45 ################################################################################
46
47 [Sources.common]
48 Ia32/Ia32PcRtc.c
49 PcRtc.c
50 PcRtc.h
51
52
53 ################################################################################
54 #
55 # Package Dependency Section - list of Package files that are required for
56 # this module.
57 #
58 ################################################################################
59
60 [Packages]
61 MdePkg/MdePkg.dec
62
63 ################################################################################
64 #
65 # Library Class Section - list of Library Classes that are required for
66 # this module.
67 #
68 ################################################################################
69
70 [LibraryClasses]
71 UefiRuntimeServicesTableLib
72 UefiRuntimeLib
73 UefiBootServicesTableLib
74 UefiDriverEntryPoint
75 TimerLib
76 IoLib
77 BaseMemoryLib
78 UefiLib
79 DebugLib
80 BaseLib
81
82
83 ################################################################################
84 #
85 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
86 # that this module uses or produces.
87 #
88 ################################################################################
89
90 [Protocols]
91 gEfiRealTimeClockArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
92
93
94 ################################################################################
95 #
96 # Dependency Expression Section - list of Dependency expressions that are required for
97 # this module.
98 #
99 ################################################################################
100
101 [Depex]
102 gEfiCpuArchProtocolGuid AND gEfiMetronomeArchProtocolGuid
103