Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <string> |
| 4 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 5 | namespace ipmi_flash |
Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 6 | { |
| 7 | |
Patrick Venture | 26e241d | 2019-05-20 18:39:01 -0700 | [diff] [blame] | 8 | extern const std::string updateBlobId; |
Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 9 | extern const std::string verifyBlobId; |
| 10 | extern const std::string hashBlobId; |
| 11 | extern const std::string activeImageBlobId; |
| 12 | extern const std::string activeHashBlobId; |
| 13 | extern const std::string staticLayoutBlobId; |
| 14 | extern const std::string ubiTarballBlobId; |
Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 15 | extern const std::string cleanupBlobId; |
Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 16 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 17 | } // namespace ipmi_flash |