diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/edk2/EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/edk2/EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf')
-rw-r--r-- | roms/edk2/EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/roms/edk2/EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf b/roms/edk2/EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf new file mode 100644 index 000000000..ba7fdbf5b --- /dev/null +++ b/roms/edk2/EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf @@ -0,0 +1,50 @@ +## @file
+# Stuff driver
+#
+# Tiano PEIM to abstract construction of firmware volume in a Emu environment.
+# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
+# Portions copyright (c) 2011, Apple Inc. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+#
+#
+##
+
+[Defines]
+ INF_VERSION = 0x00010005
+ BASE_NAME = ThunkPpiToProtocolPei
+ FILE_GUID = C32A66D5-D8B7-2640-B768-082C8F083C37
+ MODULE_TYPE = PEIM
+ VERSION_STRING = 1.0
+
+ ENTRY_POINT = PeiInitialzeThunkPpiToProtocolPei
+
+
+[Sources]
+ ThunkPpiToProtocolPei.c
+
+
+[Packages]
+ MdePkg/MdePkg.dec
+ EmulatorPkg/EmulatorPkg.dec
+
+
+[LibraryClasses]
+ PeiServicesTablePointerLib
+ PeiServicesLib
+ HobLib
+ PeimEntryPoint
+ DebugLib
+
+
+[Protocols]
+ gEmuThunkProtocolGuid # PROTOCOL ALWAYS_CONSUMED
+
+
+[Ppis]
+ gEmuThunkPpiGuid # PPI ALWAYS_CONSUMED
+
+
+[Depex]
+ gEmuThunkPpiGuid AND gEfiPeiMemoryDiscoveredPpiGuid
+
|