X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FEbcDxe%2FEbcDxe.inf;h=e9a0b28c40747bded5711ff486b3ab1683c46847;hb=4a2aaff2fca69d9f41c5b8906699ba242278cbaa;hp=c1a02a10f0a6b409e05bcf3a370b213920746a20;hpb=f45af90b0195eb9712609d3af91d523edc371115;p=mirror_edk2.git diff --git a/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf b/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf index c1a02a10f0..e9a0b28c40 100644 --- a/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf +++ b/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf @@ -1,12 +1,13 @@ -#/** @file +## @file +# Module that produces EBC Interprete and EBC Debug Support protocols. # -# Component description file for Ebc module. -# -# This module for the EBC virtual machine implementation produces -# EBC and EBC debug support protocols. -# -# Copyright (c) 2006 - 2008, Intel Corporation.
-# All rights reserved. This program and the accompanying materials +# This module implements EFI Byte Code (EBC) Virtual Machine that can provide +# platform and processor-independent mechanisms for loading and executing EFI +# device drivers. +# +# Copyright (c) 2015, The Linux Foundation. All rights reserved. +# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
+# This program and the accompanying materials # 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 @@ -14,26 +15,24 @@ # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # -#**/ +## [Defines] INF_VERSION = 0x00010005 BASE_NAME = EbcDxe + MODULE_UNI_FILE = EbcDxe.uni FILE_GUID = 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 - EDK_RELEASE_VERSION = 0x00020000 - EFI_SPECIFICATION_VERSION = 0x00020000 - ENTRY_POINT = InitializeEbcDriver # # The following information is for reference only and not required by the build tools. # -# VALID_ARCHITECTURES = IA32 X64 IPF +# VALID_ARCHITECTURES = IA32 X64 IPF AARCH64 # -[Sources.common] +[Sources] EbcExecute.h EbcExecute.c EbcInt.h @@ -41,24 +40,28 @@ [Sources.Ia32] Ia32/EbcSupport.c + Ia32/EbcLowLevel.nasm Ia32/EbcLowLevel.S Ia32/EbcLowLevel.asm [Sources.X64] - x64/EbcSupport.c - x64/EbcLowLevel.S - x64/EbcLowLevel.asm + X64/EbcSupport.c + X64/EbcLowLevel.nasm + X64/EbcLowLevel.S + X64/EbcLowLevel.asm [Sources.IPF] Ipf/EbcSupport.h Ipf/EbcSupport.c Ipf/EbcLowLevel.s +[Sources.AARCH64] + AArch64/EbcSupport.c + AArch64/EbcLowLevel.S [Packages] MdePkg/MdePkg.dec - - + MdeModulePkg/MdeModulePkg.dec [LibraryClasses] MemoryAllocationLib @@ -70,8 +73,19 @@ [Protocols] - gEfiDebugSupportProtocolGuid # PROTOCOL ALWAYS_PRODUCED - gEfiEbcProtocolGuid # PROTOCOL ALWAYS_PRODUCED + gEfiDebugSupportProtocolGuid ## PRODUCES + gEfiEbcProtocolGuid ## PRODUCES + gEfiEbcVmTestProtocolGuid ## SOMETIMES_PRODUCES + gEfiEbcSimpleDebuggerProtocolGuid ## SOMETIMES_CONSUMES [Depex] TRUE + +# [Event] +# +# Periodic timer event to support EFI debug support protocol for EBC image. +# +# EVENT_TYPE_PERIODIC_TIMER ## CONSUMES + +[UserExtensions.TianoCore."ExtraFiles"] + EbcDxeExtra.uni \ No newline at end of file