blob: e5197ddb748f77000115f00d79e63d19cb7d2b34 [file] [log] [blame]
Patrick Venture7dad86f2019-05-17 08:52:20 -07001#pragma once
2
Patrick Venture1d5a31c2019-05-20 11:38:22 -07003namespace ipmi_flash
Patrick Venture7dad86f2019-05-17 08:52:20 -07004{
5
Patrick Ventureede9c9f2020-09-30 13:49:19 -07006inline constexpr char biosBlobId[] = "/flash/bios";
7inline constexpr char updateBlobId[] = "/flash/update";
8inline constexpr char verifyBlobId[] = "/flash/verify";
9inline constexpr char hashBlobId[] = "/flash/hash";
10inline constexpr char activeImageBlobId[] = "/flash/active/image";
11inline constexpr char activeHashBlobId[] = "/flash/active/hash";
12inline constexpr char staticLayoutBlobId[] = "/flash/image";
13inline constexpr char ubiTarballBlobId[] = "/flash/tarball";
14inline constexpr char cleanupBlobId[] = "/flash/cleanup";
Patrick Venture7dad86f2019-05-17 08:52:20 -070015
Patrick Venture1d5a31c2019-05-20 11:38:22 -070016} // namespace ipmi_flash