Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-ipmi-flash
/
e312f39b98d0f6568f7ce7ac3d5f06087ca58de3
/
.
/
status.hpp
blob: 2789d9c51682c078819a69f3165fd05d2a4cb03e [
file
] [
log
] [
blame
]
#pragma
once
#include
<cstdint>
namespace
ipmi_flash
{
/** The status of the update mechanism or the verification mechanism */
enum
class
ActionStatus
:
std
::
uint8_t
{
running
=
0
,
success
=
1
,
failed
=
2
,
unknown
=
3
,
};
}
// namespace ipmi_flash