1 | ## @file
|
---|
2 | # Component description file for ResetSystem module.
|
---|
3 | #
|
---|
4 | # This driver implements Reset Architectural Protocol.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # This program and the accompanying materials are
|
---|
9 | # licensed and made available under the terms and conditions of the BSD License
|
---|
10 | # which accompanies this distribution. The full text of the license may be found at
|
---|
11 | # http://opensource.org/licenses/bsd-license.php
|
---|
12 | #
|
---|
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
15 | #
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = ResetSystemRuntimeDxe
|
---|
21 | FILE_GUID = 4B28E4C7-FF36-4e10-93CF-A82159E777C5
|
---|
22 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 |
|
---|
25 | ENTRY_POINT = InitializeResetSystem
|
---|
26 |
|
---|
27 | #
|
---|
28 | # The following information is for reference only and not required by the build tools.
|
---|
29 | #
|
---|
30 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
31 | #
|
---|
32 |
|
---|
33 | [Sources]
|
---|
34 | ResetSystem.h
|
---|
35 | ResetSystem.c
|
---|
36 |
|
---|
37 | [Packages]
|
---|
38 | MdePkg/MdePkg.dec
|
---|
39 | MdeModulePkg/MdeModulePkg.dec
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | ResetSystemLib
|
---|
43 | UefiRuntimeServicesTableLib
|
---|
44 | UefiRuntimeLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | UefiDriverEntryPoint
|
---|
47 | IoLib
|
---|
48 | UefiLib
|
---|
49 | DebugLib
|
---|
50 | BaseLib
|
---|
51 |
|
---|
52 |
|
---|
53 | [Guids]
|
---|
54 | gEfiCapsuleVendorGuid # ALWAYS_CONSUMED
|
---|
55 |
|
---|
56 |
|
---|
57 | [Protocols]
|
---|
58 | gEfiResetArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
---|
59 |
|
---|
60 |
|
---|
61 | [Depex]
|
---|
62 | TRUE
|
---|
63 |
|
---|