• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# This driver first constructs the non-tested memory range, then performs the R/W/V memory test.
3#
4# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
5#
6# This program and the accompanying materials are
7# 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#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = GenericMemoryTestDxe
19  MODULE_UNI_FILE                = GenericMemoryTestDxe.uni
20  FILE_GUID                      = 9C1080EE-D02E-487f-9432-F3BF086EC180
21  MODULE_TYPE                    = DXE_DRIVER
22  VERSION_STRING                 = 1.0
23
24  ENTRY_POINT                    = GenericMemoryTestEntryPoint
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
30#
31
32[Sources]
33  LightMemoryTest.h
34  LightMemoryTest.c
35
36[Packages]
37  MdePkg/MdePkg.dec
38  MdeModulePkg/MdeModulePkg.dec
39
40[LibraryClasses]
41  UefiBootServicesTableLib
42  MemoryAllocationLib
43  BaseMemoryLib
44  BaseLib
45  ReportStatusCodeLib
46  DxeServicesTableLib
47  HobLib
48  UefiDriverEntryPoint
49  DebugLib
50
51[Protocols]
52  gEfiCpuArchProtocolGuid                       ## CONSUMES
53  gEfiGenericMemTestProtocolGuid                ## PRODUCES
54
55[Depex]
56  gEfiCpuArchProtocolGuid
57
58[UserExtensions.TianoCore."ExtraFiles"]
59  GenericMemoryTestDxeExtra.uni
60