2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2007-06-29 03:28:00 +02:00
|
|
|
# SMM driver entry point library
|
|
|
|
#
|
|
|
|
# Register driver in SMRAM and wrapper driver library constructors and entry point
|
2010-04-23 17:52:13 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2007-06-29 03:28:00 +02:00
|
|
|
#
|
2010-04-23 17:52:13 +02:00
|
|
|
# This program and the accompanying materials
|
2007-06-29 03:28:00 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-06-29 03:28:00 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DxeSmmDriverEntryPoint
|
|
|
|
FILE_GUID = 79C5C7B7-1083-42a6-AD15-2A4E7C4274D7
|
|
|
|
MODULE_TYPE = DXE_SMM_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2008-11-21 05:30:05 +01:00
|
|
|
LIBRARY_CLASS = UefiDriverEntryPoint|DXE_SMM_DRIVER
|
2007-06-29 03:28:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-06-29 03:28:00 +02:00
|
|
|
DriverEntryPoint.c
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2007-07-13 11:36:49 +02:00
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
2007-06-29 03:28:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
2008-12-04 10:36:31 +01:00
|
|
|
DebugLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
DevicePathLib
|
2007-06-29 03:28:00 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiLoadedImageProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
|
|
gEfiSmmBaseProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
|
|
gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
2008-12-11 10:36:02 +01:00
|
|
|
|
|
|
|
[Depex]
|
|
|
|
gEfiSmmBaseProtocolGuid
|
|
|
|
|
2007-06-29 03:28:00 +02:00
|
|
|
|