1## @file 2# Boot Script Executor Module 3# 4# This is a standalone Boot Script Executor. Standalone means it does not 5# depends on any PEI or DXE service. 6# 7# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR> 8# 9# This program and the accompanying materials are 10# licensed and made available under the terms and conditions of the BSD License 11# which accompanies this distribution. The full text of the license may be found at 12# http://opensource.org/licenses/bsd-license.php 13# 14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16# 17## 18 19[Defines] 20 INF_VERSION = 0x00010005 21 BASE_NAME = BootScriptExecutorDxe 22 MODULE_UNI_FILE = BootScriptExecutorDxe.uni 23 FILE_GUID = FA20568B-548B-4b2b-81EF-1BA08D4A3CEC 24 MODULE_TYPE = DXE_DRIVER 25 VERSION_STRING = 1.0 26 27 ENTRY_POINT = BootScriptExecutorEntryPoint 28 29# 30# The following information is for reference only and not required by the build tools. 31# 32# VALID_ARCHITECTURES = IA32 X64 33# 34 35[Sources] 36 ScriptExecute.h 37 ScriptExecute.c 38 39[Sources.X64] 40 X64/SetIdtEntry.c 41 X64/S3Asm.nasm 42 X64/S3Asm.asm 43 X64/S3Asm.S 44 45[Sources.Ia32] 46 IA32/SetIdtEntry.c 47 IA32/S3Asm.nasm 48 IA32/S3Asm.asm 49 IA32/S3Asm.S 50 51[Packages] 52 MdePkg/MdePkg.dec 53 MdeModulePkg/MdeModulePkg.dec 54 55[LibraryClasses] 56 PcdLib 57 BaseMemoryLib 58 UefiDriverEntryPoint 59 BaseLib 60 S3BootScriptLib 61 PeCoffLib 62 DxeServicesLib 63 UefiBootServicesTableLib 64 CacheMaintenanceLib 65 UefiLib 66 DebugAgentLib 67 LockBoxLib 68 CpuExceptionHandlerLib 69 DevicePathLib 70 71[Guids] 72 gEfiBootScriptExecutorVariableGuid ## PRODUCES ## UNDEFINED # SaveLockBox 73 gEfiBootScriptExecutorContextGuid ## PRODUCES ## UNDEFINED # SaveLockBox 74 gEdkiiMemoryProfileGuid ## SOMETIMES_CONSUMES ## GUID # Locate protocol 75 76[Protocols] 77 ## NOTIFY 78 ## CONSUMES 79 gEfiDxeSmmReadyToLockProtocolGuid 80 81[FeaturePcd] 82 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode ## CONSUMES 83 84[Pcd] 85 gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable ## SOMETIMES_CONSUMES 86 gEfiMdeModulePkgTokenSpaceGuid.PcdMemoryProfilePropertyMask ## CONSUMES 87 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES 88 89[Depex] 90 gEfiLockBoxProtocolGuid 91 92[UserExtensions.TianoCore."ExtraFiles"] 93 BootScriptExecutorDxeExtra.uni 94