mirror of https://github.com/acidanthera/audk.git
Add the new reset type (EfiResetPlatformSpecific) to UefiSpec.h to follow UEFI Spec 2.4.
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14576 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f5ec0a86d8
commit
fc51ab6ceb
|
@ -987,7 +987,15 @@ typedef enum {
|
||||||
/// state. If the system does not support this reset type, then when the system
|
/// state. If the system does not support this reset type, then when the system
|
||||||
/// is rebooted, it should exhibit the EfiResetCold attributes.
|
/// is rebooted, it should exhibit the EfiResetCold attributes.
|
||||||
///
|
///
|
||||||
EfiResetShutdown
|
EfiResetShutdown,
|
||||||
|
///
|
||||||
|
/// Used to induce a system-wide reset. The exact type of the reset is defined by
|
||||||
|
/// the EFI_GUID that follows the Null-terminated Unicode string passed into
|
||||||
|
/// ResetData. If the platform does not recognize the EFI_GUID in ResetData the
|
||||||
|
/// platform must pick a supported reset type to perform. The platform may
|
||||||
|
/// optionally log the parameters from any non-normal reset that occurs.
|
||||||
|
///
|
||||||
|
EfiResetPlatformSpecific
|
||||||
} EFI_RESET_TYPE;
|
} EFI_RESET_TYPE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue