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 - 2014, 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.asm
42  X64/S3Asm.S
43
44[Sources.Ia32]
45  IA32/SetIdtEntry.c
46  IA32/S3Asm.asm
47  IA32/S3Asm.S
48
49[Packages]
50  MdePkg/MdePkg.dec
51  MdeModulePkg/MdeModulePkg.dec
52
53[LibraryClasses]
54  PcdLib
55  BaseMemoryLib
56  UefiDriverEntryPoint
57  BaseLib
58  S3BootScriptLib
59  PeCoffLib
60  DxeServicesLib
61  UefiBootServicesTableLib
62  CacheMaintenanceLib
63  UefiLib
64  DebugAgentLib
65  LockBoxLib
66  CpuExceptionHandlerLib
67  DevicePathLib
68
69[Guids]
70  gEfiBootScriptExecutorVariableGuid    ## PRODUCES ## UNDEFINED # SaveLockBox
71  gEfiBootScriptExecutorContextGuid     ## PRODUCES ## UNDEFINED # SaveLockBox
72  gEdkiiMemoryProfileGuid               ## SOMETIMES_CONSUMES ## GUID # Locate protocol
73
74[Protocols]
75  ## NOTIFY
76  ## CONSUMES
77  gEfiDxeSmmReadyToLockProtocolGuid
78
79[FeaturePcd]
80  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode  ## CONSUMES
81
82[Pcd]
83  gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable              ## SOMETIMES_CONSUMES
84  gEfiMdeModulePkgTokenSpaceGuid.PcdMemoryProfilePropertyMask   ## CONSUMES
85
86[Depex]
87  gEfiLockBoxProtocolGuid
88
89[UserExtensions.TianoCore."ExtraFiles"]
90  BootScriptExecutorDxeExtra.uni
91