1## @file 2# This driver produces security2 and security architectural protocol based on SecurityManagementLib. 3# 4# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR> 5# This program and the accompanying materials 6# are licensed and made available under the terms and conditions of the BSD License 7# which accompanies this distribution. The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license.php 9# 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 = SecurityStubDxe 19 MODULE_UNI_FILE = SecurityStubDxe.uni 20 FILE_GUID = F80697E9-7FD6-4665-8646-88E33EF71DFC 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 ENTRY_POINT = SecurityStubInitialize 24 25 26# 27# VALID_ARCHITECTURES = IA32 X64 IPF EBC 28# 29 30[Sources] 31 SecurityStub.c 32 Defer3rdPartyImageLoad.c 33 Defer3rdPartyImageLoad.h 34 35[Packages] 36 MdePkg/MdePkg.dec 37 MdeModulePkg/MdeModulePkg.dec 38 39[LibraryClasses] 40 UefiDriverEntryPoint 41 UefiBootServicesTableLib 42 DebugLib 43 SecurityManagementLib 44 ReportStatusCodeLib 45 UefiLib 46 47[Guids] 48 gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event 49 50[Protocols] 51 gEfiSecurityArchProtocolGuid ## PRODUCES 52 gEfiSecurity2ArchProtocolGuid ## PRODUCES 53 gEfiDeferredImageLoadProtocolGuid ## PRODUCES 54 gEfiDxeSmmReadyToLockProtocolGuid ## CONSUMES 55 56[Depex] 57 TRUE 58 59[UserExtensions.TianoCore."ExtraFiles"] 60 SecurityStubDxeExtra.uni 61