2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# This driver produces security2 and security architectural protocol based on SecurityManagementLib.
|
2007-07-19 11:01:25 +02:00
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:33:45 +02:00
|
|
|
# This program and the accompanying materials
|
2007-07-19 11:01:25 +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-07-19 11:01:25 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = SecurityStubDxe
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = SecurityStubDxe.uni
|
2007-07-19 11:01:25 +02:00
|
|
|
FILE_GUID = F80697E9-7FD6-4665-8646-88E33EF71DFC
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = SecurityStubInitialize
|
|
|
|
|
|
|
|
|
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2007-07-19 11:01:25 +02:00
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-19 11:01:25 +02:00
|
|
|
SecurityStub.c
|
2016-10-31 09:31:44 +01:00
|
|
|
Defer3rdPartyImageLoad.c
|
|
|
|
Defer3rdPartyImageLoad.h
|
2007-07-19 11:01:25 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2009-11-26 02:31:48 +01:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-07-19 11:01:25 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
DebugLib
|
2009-11-26 02:31:48 +01:00
|
|
|
SecurityManagementLib
|
2016-11-01 09:42:21 +01:00
|
|
|
ReportStatusCodeLib
|
|
|
|
UefiLib
|
2007-07-19 11:01:25 +02:00
|
|
|
|
2016-10-31 09:31:44 +01:00
|
|
|
[Guids]
|
|
|
|
gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
|
|
|
|
|
2007-07-19 11:01:25 +02:00
|
|
|
[Protocols]
|
2012-08-22 04:32:12 +02:00
|
|
|
gEfiSecurityArchProtocolGuid ## PRODUCES
|
|
|
|
gEfiSecurity2ArchProtocolGuid ## PRODUCES
|
2016-10-31 09:31:44 +01:00
|
|
|
gEfiDeferredImageLoadProtocolGuid ## PRODUCES
|
2017-09-25 13:06:24 +02:00
|
|
|
gEfiDxeSmmReadyToLockProtocolGuid ## NOTIFY
|
2007-07-19 11:01:25 +02:00
|
|
|
|
|
|
|
[Depex]
|
2009-01-04 04:20:55 +01:00
|
|
|
TRUE
|
2014-08-28 08:34:06 +02:00
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
SecurityStubDxeExtra.uni
|