1 #pragma once 2 3 namespace ipmi_flash 4 { 5 6 inline constexpr char biosBlobId[] = "/flash/bios"; 7 inline constexpr char updateBlobId[] = "/flash/update"; 8 inline constexpr char verifyBlobId[] = "/flash/verify"; 9 inline constexpr char hashBlobId[] = "/flash/hash"; 10 inline constexpr char activeImageBlobId[] = "/flash/active/image"; 11 inline constexpr char activeHashBlobId[] = "/flash/active/hash"; 12 inline constexpr char staticLayoutBlobId[] = "/flash/image"; 13 inline constexpr char ubiTarballBlobId[] = "/flash/tarball"; 14 inline constexpr char cleanupBlobId[] = "/flash/cleanup"; 15 16 } // namespace ipmi_flash 17