• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# This driver implements Reset Architectural Protocol.
3#
4# It should depend on the ResetSystemLib instance that is implemented based on KBC.
5#
6# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
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#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15#  Module Name:
16#    Reset.inf
17#
18#  Abstract:
19#
20##
21[Defines]
22  INF_VERSION                    = 0x00010005
23  BASE_NAME                      = KbcReset
24  MODULE_UNI_FILE                = KbcReset.uni
25  FILE_GUID                      = 6F0198AA-1F1D-426D-AE3E-39AB633FCC28
26  MODULE_TYPE                    = DXE_RUNTIME_DRIVER
27  VERSION_STRING                 = 1.0
28  ENTRY_POINT                    = InitializeReset
29
30[Packages]
31  MdePkg/MdePkg.dec
32  MdeModulePkg/MdeModulePkg.dec
33
34[LibraryClasses]
35  UefiDriverEntryPoint
36  DebugLib
37  UefiBootServicesTableLib
38  ResetSystemLib
39
40[Sources]
41  ResetEntry.c
42
43[Protocols]
44  gEfiResetArchProtocolGuid ## PRODUCES
45
46[Depex]
47  TRUE
48
49[UserExtensions.TianoCore."ExtraFiles"]
50  KbcResetExtra.uni
51