1 | #/** @file
|
---|
2 | # Reset Architectural Protocol Driver as defined in PI
|
---|
3 | #
|
---|
4 | # This Reset module simulates system reset by process exit on NT.
|
---|
5 | # Copyright (c) 2006 - 2007, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | #
|
---|
10 | #**/
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = Reset
|
---|
15 | FILE_GUID = 16036A73-E8EF-46D0-953C-9B8E96527D13
|
---|
16 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 |
|
---|
19 | ENTRY_POINT = InitializeReset
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources.common]
|
---|
28 | reset.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | EmbeddedPkg/EmbeddedPkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | UefiBootServicesTableLib
|
---|
36 | UefiDriverEntryPoint
|
---|
37 | DebugLib
|
---|
38 | EfiResetSystemLib
|
---|
39 |
|
---|
40 | [Protocols]
|
---|
41 | gEfiResetArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
---|
42 |
|
---|
43 | [Depex]
|
---|
44 | TRUE
|
---|
45 |
|
---|