Add debug info when decompress failed in DxeIpl and allocate pages failed in PeiMain.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2140 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4
2006-12-26 10:00:18 +00:00
parent 9ccee2a037
commit e75ac0cce3
2 changed files with 11 additions and 0 deletions

View File

@@ -848,6 +848,7 @@ Returns:
//
// GetInfo failed
//
DEBUG ((EFI_D_ERROR, "Decompress GetInfo Failed - %r\n", Status));
return EFI_NOT_FOUND;
}
@@ -875,6 +876,13 @@ Returns:
DstBuffer,
ScratchBuffer
);
if (EFI_ERROR (Status)) {
//
// Decompress failed
//
DEBUG ((EFI_D_ERROR, "Decompress Failed - %r\n", Status));
return EFI_NOT_FOUND;
}
}
CmpSection = (EFI_COMMON_SECTION_HEADER *) DstBuffer;