blob: 05780b8d6f60934fcfd39e4cc582d84dd73a6b66 [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
22const std::string verifyBlobId = "/flash/verify";
23const std::string hashBlobId = "/flash/hash";
24const std::string activeImageBlobId = "/flash/active/image";
25const std::string activeHashBlobId = "/flash/active/hash";
26const std::string staticLayoutBlobId = "/flash/image";
27const std::string ubiTarballBlobId = "/flash/tarball";
28
Patrick Venture1d5a31c2019-05-20 11:38:22 -070029} // namespace ipmi_flash