2007-07-19 10:26:33 +02:00
|
|
|
#/** @file
|
2008-11-07 10:34:50 +01:00
|
|
|
# This driver installs Generic Memory Test Protocol which does not perform real memory test.
|
2008-04-08 05:08:15 +02:00
|
|
|
#
|
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
2007-07-19 10:26:33 +02:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-04-08 05:08:15 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-07-19 10:26:33 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-04-08 05:08:15 +02:00
|
|
|
#
|
2007-07-19 10:26:33 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-04-08 05:08:15 +02:00
|
|
|
#
|
2007-07-19 10:26:33 +02:00
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = NullMemoryTestDxe
|
|
|
|
FILE_GUID = 96B5C032-DF4C-4b6e-8232-438DCF448D0E
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = GenericMemoryTestEntryPoint
|
|
|
|
|
2008-10-28 08:17:17 +01:00
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2007-07-19 10:26:33 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
2008-10-28 08:17:17 +01:00
|
|
|
#
|
2007-07-19 10:26:33 +02:00
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
NullMemoryTest.h
|
|
|
|
NullMemoryTest.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
MemoryAllocationLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
DxeServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
|
|
|
|
|
|
|
[Protocols]
|
2009-01-23 11:01:51 +01:00
|
|
|
gEfiGenericMemTestProtocolGuid ## PRODUCES
|
2007-07-19 10:26:33 +02:00
|
|
|
|
|
|
|
[Depex]
|
2008-11-07 10:34:50 +01:00
|
|
|
TRUE
|