blob: 04ae17f08d02ee66545d602fb17e84a6218ac8ba [file] [log] [blame]
Patrick Venture7dad86f2019-05-17 08:52:20 -07001/*
2 * Copyright 2019 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "util.hpp"
18
Patrick Venture1d5a31c2019-05-20 11:38:22 -070019namespace ipmi_flash
Patrick Venture7dad86f2019-05-17 08:52:20 -070020{
21
Patrick Venture7c2a00e2019-07-01 17:33:03 -070022const std::string biosBlobId = "/flash/bios";
Patrick Venture26e241d2019-05-20 18:39:01 -070023const std::string updateBlobId = "/flash/update";
Patrick Venture7dad86f2019-05-17 08:52:20 -070024const std::string verifyBlobId = "/flash/verify";
25const std::string hashBlobId = "/flash/hash";
26const std::string activeImageBlobId = "/flash/active/image";
27const std::string activeHashBlobId = "/flash/active/hash";
28const std::string staticLayoutBlobId = "/flash/image";
29const std::string ubiTarballBlobId = "/flash/tarball";
Patrick Venture9efef5d2019-06-19 08:45:44 -070030const std::string cleanupBlobId = "/flash/cleanup";
Patrick Venture7dad86f2019-05-17 08:52:20 -070031
Patrick Venture1d5a31c2019-05-20 11:38:22 -070032} // namespace ipmi_flash