Add error debug information for capsule processing in Bds.
Signed-off-by: li-elvin Reviewed-by: lgao4, jyao1 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12271 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
BDS routines to handle capsules.
|
BDS routines to handle capsules.
|
||||||
|
|
||||||
Copyright (c) 2004 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -65,6 +65,7 @@ BdsProcessCapsules (
|
|||||||
// We don't do anything else if the boot mode is not flash-update
|
// We don't do anything else if the boot mode is not flash-update
|
||||||
//
|
//
|
||||||
if (BootMode != BOOT_ON_FLASH_UPDATE) {
|
if (BootMode != BOOT_ON_FLASH_UPDATE) {
|
||||||
|
DEBUG ((EFI_D_ERROR, "Boot mode is not correct for capsule update.\n"));
|
||||||
return EFI_INVALID_PARAMETER;
|
return EFI_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,6 +83,10 @@ BdsProcessCapsules (
|
|||||||
//
|
//
|
||||||
// We didn't find a hob, so had no errors.
|
// We didn't find a hob, so had no errors.
|
||||||
//
|
//
|
||||||
|
DEBUG ((EFI_D_ERROR, "We can not find capsule data in capsule update boot mode.\n"));
|
||||||
|
DEBUG ((EFI_D_ERROR, "Please check the followings are correct if unexpected capsule update error happens.\n"));
|
||||||
|
DEBUG ((EFI_D_ERROR, "1. CapsuleX64 is built as X64 module when PEI is IA32 and DXE is X64\n"));
|
||||||
|
DEBUG ((EFI_D_ERROR, "2. Capsule data should persist in memory across a system reset.\n"));
|
||||||
PlatformBdsLockNonUpdatableFlash ();
|
PlatformBdsLockNonUpdatableFlash ();
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user