Apply david's patch.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5091 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -38,7 +38,7 @@ PrintValue64 (
|
||||
|
||||
VOID
|
||||
PrintString (
|
||||
UINT8 *String
|
||||
CHAR8 *String
|
||||
);
|
||||
|
||||
VOID
|
||||
|
@@ -32,4 +32,5 @@
|
||||
#include <VariableFormat.h>
|
||||
#include <CpuIA32.h>
|
||||
|
||||
#endif // _DUET_DXEIPL_H_
|
||||
#endif // _DUET_DXEIPL_H_
|
||||
|
||||
|
@@ -55,16 +55,16 @@
|
||||
Debug.h
|
||||
|
||||
[Sources.x64]
|
||||
X64\CpuIoAccess.asm
|
||||
X64\EnterDxeCore.asm
|
||||
X64\Paging.c
|
||||
X64\VirtualMemory.h
|
||||
X64/CpuIoAccess.asm
|
||||
X64/EnterDxeCore.asm
|
||||
X64/Paging.c
|
||||
X64/VirtualMemory.h
|
||||
|
||||
[Sources.Ia32]
|
||||
Ia32\CpuIoAccess.asm
|
||||
Ia32\EnterDxeCore.asm
|
||||
Ia32\Paging.c
|
||||
Ia32\VirtualMemory.h
|
||||
Ia32/CpuIoAccess.asm
|
||||
Ia32/EnterDxeCore.asm
|
||||
Ia32/Paging.c
|
||||
Ia32/VirtualMemory.h
|
||||
|
||||
#[BuildOptions.common]
|
||||
#MSFT:*_*_IA32_DLINK_FLAGS = /out:"$(BIN_DIR)\SecMain.exe" /base:0x10000000 /pdb:"$(BIN_DIR)\SecMain.pdb" /LIBPATH:"$(VCINSTALLDIR)\Lib" /LIBPATH:"$(VCINSTALLDIR)\PlatformSdk\Lib" /NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB /IGNORE:4086 /MAP /OPT:REF /DEBUG /MACHINE:I386 /LTCG Kernel32.lib MSVCRTD.lib Gdi32.lib User32.lib Winmm.lib
|
||||
@@ -72,3 +72,4 @@
|
||||
#MSFT:*_*_IA32_PP_FLAGS = /nologo /E /TC /FI$(DEST_DIR_DEBUG)/AutoGen.h
|
||||
#MSFT:*_*_IA32_ASM_FLAGS = /nologo /W3 /WX /c /coff /Cx /Zd /W0 /Zi
|
||||
#MSFT:*_*_IA32_ASMLINK_FLAGS = /link /nologo /tiny
|
||||
#GCC:*_UNIXGCC_IA32_CC_FLAGS = -O2 -falign-functions -falign-jumps -falign-loops -freorder-blocks -freorder-blocks-and-partition -falign-labels -fshort-wchar -fno-strict-aliasing -Wall -Wno-missing-braces -c -include AutoGen.h
|
||||
|
@@ -547,7 +547,7 @@ Return:
|
||||
//
|
||||
// Process region above 4GB
|
||||
//
|
||||
if (EfiMemoryDescriptor[Index].PhysicalStart >= 0x100000000) {
|
||||
if (EfiMemoryDescriptor[Index].PhysicalStart >= 0x100000000LL) {
|
||||
if (EfiMemoryDescriptor[Index].Type == EfiConventionalMemory) {
|
||||
if (gHob->MemoryAbove4GB.PhysicalStart == 0) {
|
||||
gHob->MemoryAbove4GB.PhysicalStart = EfiMemoryDescriptor[Index].PhysicalStart;
|
||||
|
@@ -21,7 +21,7 @@ Revision History:
|
||||
#include "DxeIpl.h"
|
||||
#include "HobGeneration.h"
|
||||
|
||||
#define ACPI_RSD_PTR 0x2052545020445352
|
||||
#define ACPI_RSD_PTR 0x2052545020445352LL
|
||||
#define MPS_PTR EFI_SIGNATURE_32('_','M','P','_')
|
||||
#define SMBIOS_PTR EFI_SIGNATURE_32('_','S','M','_')
|
||||
|
||||
|
@@ -656,7 +656,7 @@ Returns:
|
||||
|
||||
VOID
|
||||
DebugSerialPrint (
|
||||
IN UINT8 *OutputString
|
||||
IN CHAR8 *OutputString
|
||||
)
|
||||
/*++
|
||||
|
||||
|
@@ -67,7 +67,7 @@ extern UINT8 gBreakSet;
|
||||
|
||||
VOID
|
||||
DebugSerialPrint (
|
||||
IN UINT8 *OutputString
|
||||
IN CHAR8 *OutputString
|
||||
);
|
||||
|
||||
VOID
|
||||
|
Reference in New Issue
Block a user