Add a PE/COFF extra action lib that DEBUG prints the debugger command to load symbols. Turn off DXE Core DEBUG print on load and use this new library in its place.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10373 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9e4f210c32
commit
5b792f1abf
|
@ -0,0 +1,122 @@
|
||||||
|
/**@file
|
||||||
|
|
||||||
|
Copyright (c) 2006 - 2009, Intel Corporation
|
||||||
|
Portions copyright (c) 2008-2010 Apple Inc. All rights reserved.
|
||||||
|
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
|
||||||
|
|
||||||
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
#include <PiDxe.h>
|
||||||
|
#include <Library/PeCoffLib.h>
|
||||||
|
|
||||||
|
#include <Library/BaseLib.h>
|
||||||
|
#include <Library/DebugLib.h>
|
||||||
|
#include <Library/BaseMemoryLib.h>
|
||||||
|
#include <Library/PeCoffExtraActionLib.h>
|
||||||
|
#include <Library/PrintLib.h>
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
If the build is done on cygwin the paths are cygpaths.
|
||||||
|
/cygdrive/c/tmp.txt vs c:\tmp.txt so we need to convert
|
||||||
|
them to work with RVD commands
|
||||||
|
|
||||||
|
@param Name Path to convert if needed
|
||||||
|
|
||||||
|
**/
|
||||||
|
CHAR8 *
|
||||||
|
DeCygwinPathIfNeeded (
|
||||||
|
IN CHAR8 *Name
|
||||||
|
)
|
||||||
|
{
|
||||||
|
CHAR8 *Ptr;
|
||||||
|
UINTN Index;
|
||||||
|
UINTN Len;
|
||||||
|
|
||||||
|
Ptr = AsciiStrStr (Name, "/cygdrive/");
|
||||||
|
if (Ptr == NULL) {
|
||||||
|
return Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
Len = AsciiStrLen (Ptr);
|
||||||
|
|
||||||
|
// convert "/cygdrive" to spaces
|
||||||
|
for (Index = 0; Index < 9; Index++) {
|
||||||
|
Ptr[Index] = ' ';
|
||||||
|
}
|
||||||
|
|
||||||
|
// convert /c to c:
|
||||||
|
Ptr[9] = Ptr[10];
|
||||||
|
Ptr[10] = ':';
|
||||||
|
|
||||||
|
// switch path seperators
|
||||||
|
for (Index = 11; Index < Len; Index++) {
|
||||||
|
if (Ptr[Index] == '/') {
|
||||||
|
Ptr[Index] = '\\' ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Performs additional actions after a PE/COFF image has been loaded and relocated.
|
||||||
|
|
||||||
|
If ImageContext is NULL, then ASSERT().
|
||||||
|
|
||||||
|
@param ImageContext Pointer to the image context structure that describes the
|
||||||
|
PE/COFF image that has already been loaded and relocated.
|
||||||
|
|
||||||
|
**/
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
PeCoffLoaderRelocateImageExtraAction (
|
||||||
|
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
||||||
|
)
|
||||||
|
{
|
||||||
|
#ifdef __CC_ARM
|
||||||
|
// Print out the command for the RVD debugger to load symbols for this image
|
||||||
|
DEBUG ((EFI_D_ERROR, "load /a /ni /np %a &0x%08x\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));
|
||||||
|
#elif __GNUC__
|
||||||
|
// This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required
|
||||||
|
DEBUG ((EFI_D_ERROR, "add-symbol-file %a 0x%08x\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));
|
||||||
|
#else
|
||||||
|
DEBUG ((EFI_D_ERROR, "Loading driver at 0x%11p EntryPoint=0x%11p ", (VOID *)(UINTN) ImageContext->ImageAddress, FUNCTION_ENTRY_POINT (ImageContext->EntryPoint)));
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Performs additional actions just before a PE/COFF image is unloaded. Any resources
|
||||||
|
that were allocated by PeCoffLoaderRelocateImageExtraAction() must be freed.
|
||||||
|
|
||||||
|
If ImageContext is NULL, then ASSERT().
|
||||||
|
|
||||||
|
@param ImageContext Pointer to the image context structure that describes the
|
||||||
|
PE/COFF image that is being unloaded.
|
||||||
|
|
||||||
|
**/
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
PeCoffLoaderUnloadImageExtraAction (
|
||||||
|
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
||||||
|
)
|
||||||
|
{
|
||||||
|
#ifdef __CC_ARM
|
||||||
|
// Print out the command for the RVD debugger to load symbols for this image
|
||||||
|
DEBUG ((EFI_D_ERROR, "unload symbols_only %a", DeCygwinPathIfNeeded (ImageContext->PdbPointer)));
|
||||||
|
#elif __GNUC__
|
||||||
|
// This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required
|
||||||
|
DEBUG ((EFI_D_ERROR, "remove-symbol-file %a 0x%08x\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));
|
||||||
|
#else
|
||||||
|
DEBUG ((EFI_D_ERROR, "Unloading %a", ImageContext->PdbPointer));
|
||||||
|
#endif
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
#/** @file
|
||||||
|
# PeCoff extra action libary for DXE phase that run Unix emulator.
|
||||||
|
#
|
||||||
|
# Lib to provide memory journal status code reporting Routines
|
||||||
|
# Copyright (c) 2007 - 2010, Intel Corporation
|
||||||
|
# Portiions copyright (c) 2010 Apple, Inc. All rights reserved.
|
||||||
|
# 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
|
||||||
|
#
|
||||||
|
# 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 = DebugUnixPeCoffExtraActionLib
|
||||||
|
FILE_GUID = C3E9448E-1726-42fb-9368-41F75B038C0C
|
||||||
|
MODULE_TYPE = BASE
|
||||||
|
VERSION_STRING = 1.0
|
||||||
|
LIBRARY_CLASS = PeCoffExtraActionLib
|
||||||
|
|
||||||
|
#
|
||||||
|
# The following information is for reference only and not required by the build tools.
|
||||||
|
#
|
||||||
|
# VALID_ARCHITECTURES = ARM
|
||||||
|
#
|
||||||
|
|
||||||
|
[Sources.common]
|
||||||
|
DebugPeCoffExtraActionLib.c
|
||||||
|
|
||||||
|
[Packages]
|
||||||
|
MdePkg/MdePkg.dec
|
||||||
|
|
||||||
|
[LibraryClasses]
|
||||||
|
DebugLib
|
|
@ -37,7 +37,8 @@
|
||||||
UncachedMemoryAllocationLib|ArmPkg/Library/UncachedMemoryAllocationLib/UncachedMemoryAllocationLib.inf
|
UncachedMemoryAllocationLib|ArmPkg/Library/UncachedMemoryAllocationLib/UncachedMemoryAllocationLib.inf
|
||||||
!else
|
!else
|
||||||
DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
||||||
UncachedMemoryAllocationLib|ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.inf
|
UncachedMemoryAllocationLib|ArmPkg/Library/UncachedMemoryAllocationLib/UncachedMemoryAllocationLib.inf
|
||||||
|
# UncachedMemoryAllocationLib|ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.inf
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7Lib.inf
|
||||||
|
@ -66,7 +67,8 @@
|
||||||
# the version of RVD I have does not support scipts accessing system memory.
|
# the version of RVD I have does not support scipts accessing system memory.
|
||||||
#
|
#
|
||||||
# PeCoffExtraActionLib|ArmPkg/Library/RvdPeCoffExtraActionLib/RvdPeCoffExtraActionLib.inf
|
# PeCoffExtraActionLib|ArmPkg/Library/RvdPeCoffExtraActionLib/RvdPeCoffExtraActionLib.inf
|
||||||
PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
PeCoffExtraActionLib|ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.inf
|
||||||
|
# PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
||||||
|
|
||||||
|
|
||||||
CacheMaintenanceLib|ArmPkg/Library/ArmCacheMaintenanceLib/ArmCacheMaintenanceLib.inf
|
CacheMaintenanceLib|ArmPkg/Library/ArmCacheMaintenanceLib/ArmCacheMaintenanceLib.inf
|
||||||
|
@ -112,6 +114,7 @@
|
||||||
ArmDisassemblerLib|ArmPkg/Library/ArmDisassemblerLib/ArmDisassemblerLib.inf
|
ArmDisassemblerLib|ArmPkg/Library/ArmDisassemblerLib/ArmDisassemblerLib.inf
|
||||||
DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
||||||
|
|
||||||
|
UsbLib|AppleCommonPkg/Library/AppleUsbLib/AppleUsbDxeLib.inf
|
||||||
|
|
||||||
[LibraryClasses.common.SEC]
|
[LibraryClasses.common.SEC]
|
||||||
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7LibPrePi.inf
|
ArmLib|ArmPkg/Library/ArmLib/ArmV7/ArmV7LibPrePi.inf
|
||||||
|
@ -224,7 +227,7 @@
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
|
gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
|
gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF
|
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0
|
gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|1
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0
|
gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320
|
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320
|
||||||
|
|
||||||
|
@ -254,7 +257,7 @@
|
||||||
# DEBUG_EVENT 0x00080000 // Event messages
|
# DEBUG_EVENT 0x00080000 // Event messages
|
||||||
# DEBUG_ERROR 0x80000000 // Error
|
# DEBUG_ERROR 0x80000000 // Error
|
||||||
|
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000004
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
|
||||||
|
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
|
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
|
||||||
|
|
||||||
|
@ -377,6 +380,16 @@
|
||||||
MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
||||||
MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
|
MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
|
||||||
|
|
||||||
|
AppleCommonPkg/Bus/Pci/EhciDxe/Ehci.inf {
|
||||||
|
<PcdsFixedAtBuild>
|
||||||
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x800fffff
|
||||||
|
}
|
||||||
|
AppleCommonPkg/Bus/Usb/UsbBotDxe/UsbBot.inf
|
||||||
|
AppleCommonPkg/Bus/Usb/UsbCbiDxe/Cbi0/UsbCbi0.inf
|
||||||
|
AppleCommonPkg/Bus/Usb/UsbCbiDxe/Cbi1/UsbCbi1.inf
|
||||||
|
AppleCommonPkg/Bus/Usb/UsbBusDxe/UsbBus.inf
|
||||||
|
AppleCommonPkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorage.inf
|
||||||
|
|
||||||
#
|
#
|
||||||
# Nand Flash
|
# Nand Flash
|
||||||
#
|
#
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#include <Library/OmapLib.h>
|
#include <Library/OmapLib.h>
|
||||||
#include <Library/ArmLib.h>
|
#include <Library/ArmLib.h>
|
||||||
#include <Library/PeCoffGetEntryPointLib.h>
|
#include <Library/PeCoffGetEntryPointLib.h>
|
||||||
|
#include <Library/DebugAgentLib.h>
|
||||||
|
|
||||||
#include <Ppi/GuidedSectionExtraction.h>
|
#include <Ppi/GuidedSectionExtraction.h>
|
||||||
#include <Guid/LzmaDecompress.h>
|
#include <Guid/LzmaDecompress.h>
|
||||||
|
@ -29,17 +30,6 @@
|
||||||
|
|
||||||
#include "LzmaDecompress.h"
|
#include "LzmaDecompress.h"
|
||||||
|
|
||||||
VOID
|
|
||||||
EFIAPI
|
|
||||||
_ModuleEntryPoint(
|
|
||||||
VOID
|
|
||||||
);
|
|
||||||
|
|
||||||
CHAR8 *
|
|
||||||
DeCygwinPathIfNeeded (
|
|
||||||
IN CHAR8 *Name
|
|
||||||
);
|
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
PadConfiguration (
|
PadConfiguration (
|
||||||
VOID
|
VOID
|
||||||
|
@ -50,6 +40,7 @@ ClockInit (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
TimerInit (
|
TimerInit (
|
||||||
VOID
|
VOID
|
||||||
|
@ -59,8 +50,7 @@ TimerInit (
|
||||||
UINT32 TimerBaseAddress = TimerBase(Timer);
|
UINT32 TimerBaseAddress = TimerBase(Timer);
|
||||||
|
|
||||||
// Set source clock for GPT3 & GPT4 to SYS_CLK
|
// Set source clock for GPT3 & GPT4 to SYS_CLK
|
||||||
MmioOr32(CM_CLKSEL_PER, CM_CLKSEL_PER_CLKSEL_GPT3_SYS
|
MmioOr32 (CM_CLKSEL_PER, CM_CLKSEL_PER_CLKSEL_GPT3_SYS | CM_CLKSEL_PER_CLKSEL_GPT4_SYS);
|
||||||
| CM_CLKSEL_PER_CLKSEL_GPT4_SYS);
|
|
||||||
|
|
||||||
// Set count & reload registers
|
// Set count & reload registers
|
||||||
MmioWrite32 (TimerBaseAddress + GPTIMER_TCRR, 0x00000000);
|
MmioWrite32 (TimerBaseAddress + GPTIMER_TCRR, 0x00000000);
|
||||||
|
@ -127,52 +117,6 @@ LzmaDecompressLibConstructor (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
If the build is done on cygwin the paths are cygpaths.
|
|
||||||
/cygdrive/c/tmp.txt vs c:\tmp.txt so we need to convert
|
|
||||||
them to work with RVD commands
|
|
||||||
|
|
||||||
This is just code to help print out RVD symbol load command.
|
|
||||||
If you build with cygwin paths aren't compatible with RVD.
|
|
||||||
|
|
||||||
@param Name Path to convert if needed
|
|
||||||
|
|
||||||
**/
|
|
||||||
CHAR8 *
|
|
||||||
SecDeCygwinPathIfNeeded (
|
|
||||||
IN CHAR8 *Name
|
|
||||||
)
|
|
||||||
{
|
|
||||||
CHAR8 *Ptr;
|
|
||||||
UINTN Index;
|
|
||||||
UINTN Len;
|
|
||||||
|
|
||||||
Ptr = AsciiStrStr (Name, "/cygdrive/");
|
|
||||||
if (Ptr == NULL) {
|
|
||||||
return Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
Len = AsciiStrLen (Ptr);
|
|
||||||
|
|
||||||
// convert "/cygdrive" to spaces
|
|
||||||
for (Index = 0; Index < 9; Index++) {
|
|
||||||
Ptr[Index] = ' ';
|
|
||||||
}
|
|
||||||
|
|
||||||
// convert /c to c:
|
|
||||||
Ptr[9] = Ptr[10];
|
|
||||||
Ptr[10] = ':';
|
|
||||||
|
|
||||||
// switch path seperators
|
|
||||||
for (Index = 11; Index < Len; Index++) {
|
|
||||||
if (Ptr[Index] == '/') {
|
|
||||||
Ptr[Index] = '\\' ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
CEntryPoint (
|
CEntryPoint (
|
||||||
|
@ -209,53 +153,12 @@ CEntryPoint (
|
||||||
|
|
||||||
// Start talking
|
// Start talking
|
||||||
UartInit ();
|
UartInit ();
|
||||||
|
|
||||||
|
InitializeDebugAgent (DEBUG_AGENT_INIT_PREMEM_SEC, NULL);
|
||||||
|
SaveAndSetDebugTimerInterrupt (TRUE);
|
||||||
|
|
||||||
DEBUG ((EFI_D_ERROR, "UART Enabled\n"));
|
DEBUG ((EFI_D_ERROR, "UART Enabled\n"));
|
||||||
|
|
||||||
DEBUG_CODE_BEGIN ();
|
|
||||||
//
|
|
||||||
// On a debug build print out information about the SEC. This is really info about
|
|
||||||
// the PE/COFF file we are currently running from. Useful for loading symbols in a
|
|
||||||
// debugger. Remember our image is really part of the FV.
|
|
||||||
//
|
|
||||||
RETURN_STATUS Status;
|
|
||||||
EFI_PEI_FV_HANDLE VolumeHandle;
|
|
||||||
EFI_PEI_FILE_HANDLE FileHandle;
|
|
||||||
VOID *PeCoffImage;
|
|
||||||
UINT32 Offset;
|
|
||||||
CHAR8 *FilePath;
|
|
||||||
FfsAnyFvFindFirstFile (EFI_FV_FILETYPE_SECURITY_CORE, &VolumeHandle, &FileHandle);
|
|
||||||
Status = FfsFindSectionData (EFI_SECTION_TE, FileHandle, &PeCoffImage);
|
|
||||||
if (EFI_ERROR (Status)) {
|
|
||||||
// Usually is a TE (PI striped down PE/COFF), but could be a full PE/COFF
|
|
||||||
Status = FfsFindSectionData (EFI_SECTION_PE32, FileHandle, &PeCoffImage);
|
|
||||||
}
|
|
||||||
if (!EFI_ERROR (Status)) {
|
|
||||||
Offset = PeCoffGetSizeOfHeaders (PeCoffImage);
|
|
||||||
FilePath = PeCoffLoaderGetPdbPointer (PeCoffImage);
|
|
||||||
if (FilePath != NULL) {
|
|
||||||
|
|
||||||
//
|
|
||||||
// In general you should never have to use #ifdef __CC_ARM in the code. It
|
|
||||||
// is hidden in the away in the MdePkg. But here we would like to print differnt things
|
|
||||||
// for different toolchains.
|
|
||||||
//
|
|
||||||
#ifdef __CC_ARM
|
|
||||||
// Print out the command for the RVD debugger to load symbols for this image
|
|
||||||
DEBUG ((EFI_D_ERROR, "load /a /ni /np %a &0x%08x\n", SecDeCygwinPathIfNeeded (FilePath), (CHAR8 *)PeCoffImage + Offset));
|
|
||||||
#elif __GNUC__
|
|
||||||
// This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required
|
|
||||||
DEBUG ((EFI_D_ERROR, "add-symbol-file %a 0x%08x\n", FilePath, PeCoffImage + Offset));
|
|
||||||
#else
|
|
||||||
DEBUG ((EFI_D_ERROR, "SEC starts at 0x%08x with an entry point at 0x%08x %a\n", PeCoffImage, _ModuleEntryPoint, FilePath));
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
DEBUG_CODE_END ();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Start up a free running time so that the timer lib will work
|
// Start up a free running time so that the timer lib will work
|
||||||
TimerInit ();
|
TimerInit ();
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
LzmaDecompressLib
|
LzmaDecompressLib
|
||||||
OmapLib
|
OmapLib
|
||||||
PeCoffGetEntryPointLib
|
PeCoffGetEntryPointLib
|
||||||
|
DebugAgentLib
|
||||||
|
|
||||||
[FeaturePcd]
|
[FeaturePcd]
|
||||||
gEmbeddedTokenSpaceGuid.PcdCacheEnable
|
gEmbeddedTokenSpaceGuid.PcdCacheEnable
|
||||||
|
|
Loading…
Reference in New Issue