Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <cstdint> |
| 4 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 5 | namespace ipmi_flash |
Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 6 | { |
| 7 | |
| 8 | enum class VerifyCheckResponses : std::uint8_t |
| 9 | { |
| 10 | running = 0, |
| 11 | success = 1, |
| 12 | failed = 2, |
| 13 | other = 3, |
| 14 | }; |
Patrick Venture | 8e801e1 | 2019-05-20 13:42:45 -0700 | [diff] [blame] | 15 | |
| 16 | /** The status of the update mechanism. */ |
| 17 | enum class UpdateStatus : std::uint8_t |
| 18 | { |
| 19 | running = 0, |
| 20 | success = 1, |
| 21 | failed = 2, |
| 22 | unknown = 3, |
| 23 | }; |
| 24 | |
| 25 | } // namespace ipmi_flash |