mirror of https://github.com/acidanthera/audk.git
Update UpdateCapsule() service return status to follow UEFI2.3.1 D.
Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Elvin Li <elvin.li@intel.com> Reviewed-by: Chao Zhang <chao.b.zhang@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14655 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
754739ec44
commit
efdabc6cfe
|
@ -1671,7 +1671,11 @@ typedef struct {
|
||||||
@retval EFI_INVALID_PARAMETER CapsuleCount is 0.
|
@retval EFI_INVALID_PARAMETER CapsuleCount is 0.
|
||||||
@retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.
|
@retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.
|
||||||
@retval EFI_UNSUPPORTED The capsule type is not supported on this platform.
|
@retval EFI_UNSUPPORTED The capsule type is not supported on this platform.
|
||||||
@retval EFI_OUT_OF_RESOURCES There were insufficient resources to process the capsule.
|
@retval EFI_OUT_OF_RESOURCES When ExitBootServices() has been previously called this error indicates the capsule
|
||||||
|
is compatible with this platform but is not capable of being submitted or processed
|
||||||
|
in runtime. The caller may resubmit the capsule prior to ExitBootServices().
|
||||||
|
@retval EFI_OUT_OF_RESOURCES When ExitBootServices() has not been previously called then this error indicates
|
||||||
|
the capsule is compatible with this platform but there are insufficient resources to process.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
|
@ -1698,7 +1702,11 @@ EFI_STATUS
|
||||||
@retval EFI_UNSUPPORTED The capsule type is not supported on this platform, and
|
@retval EFI_UNSUPPORTED The capsule type is not supported on this platform, and
|
||||||
MaximumCapsuleSize and ResetType are undefined.
|
MaximumCapsuleSize and ResetType are undefined.
|
||||||
@retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL.
|
@retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL.
|
||||||
@retval EFI_OUT_OF_RESOURCES There were insufficient resources to process the query request.
|
@retval EFI_OUT_OF_RESOURCES When ExitBootServices() has been previously called this error indicates the capsule
|
||||||
|
is compatible with this platform but is not capable of being submitted or processed
|
||||||
|
in runtime. The caller may resubmit the capsule prior to ExitBootServices().
|
||||||
|
@retval EFI_OUT_OF_RESOURCES When ExitBootServices() has not been previously called then this error indicates
|
||||||
|
the capsule is compatible with this platform but there are insufficient resources to process.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
|
|
Loading…
Reference in New Issue