• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Report Status Code Router Driver which produces SMM Report Stataus Code Handler Protocol and SMM Status Code Protocol.
3#
4#  Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = ReportStatusCodeRouterSmm
19  MODULE_UNI_FILE                = ReportStatusCodeRouterSmm.uni
20  FILE_GUID                      = A6885402-D022-4b0e-A509-4711B90F2A39
21  MODULE_TYPE                    = DXE_SMM_DRIVER
22  PI_SPECIFICATION_VERSION       = 0x0001000A
23  VERSION_STRING                 = 1.0
24  ENTRY_POINT                    = GenericStatusCodeSmmEntry
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29#  VALID_ARCHITECTURES           = IA32 X64
30#
31
32[Sources]
33  ReportStatusCodeRouterSmm.c
34  ReportStatusCodeRouterSmm.h
35
36[Packages]
37  MdePkg/MdePkg.dec
38  MdeModulePkg/MdeModulePkg.dec
39
40[LibraryClasses]
41  SmmServicesTableLib
42  UefiDriverEntryPoint
43  DebugLib
44  BaseLib
45  SynchronizationLib
46  MemoryAllocationLib
47
48[Protocols]
49  gEfiSmmRscHandlerProtocolGuid               ## PRODUCES
50  gEfiSmmStatusCodeProtocolGuid               ## PRODUCES
51
52[Depex]
53  TRUE
54
55[UserExtensions.TianoCore."ExtraFiles"]
56  ReportStatusCodeRouterSmmExtra.uni
57