blob: 667c0506d888aa56a3fb69acdf938c8913c06e75 [file] [log] [blame]
Patrick Venture3ecb3502019-05-17 11:03:51 -07001#pragma once
2
3#include <cstdint>
4
Patrick Venture1d5a31c2019-05-20 11:38:22 -07005namespace ipmi_flash
Patrick Venture3ecb3502019-05-17 11:03:51 -07006{
7
8enum class VerifyCheckResponses : std::uint8_t
9{
10 running = 0,
11 success = 1,
12 failed = 2,
13 other = 3,
14};
Patrick Venture8e801e12019-05-20 13:42:45 -070015
16/** The status of the update mechanism. */
17enum class UpdateStatus : std::uint8_t
18{
19 running = 0,
20 success = 1,
21 failed = 2,
22 unknown = 3,
23};
24
25} // namespace ipmi_flash