Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 1 | /* |
| 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 Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 19 | namespace ipmi_flash |
Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 20 | { |
| 21 | |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame^] | 22 | const std::string biosBlobId = "/flash/bios"; |
Patrick Venture | 26e241d | 2019-05-20 18:39:01 -0700 | [diff] [blame] | 23 | const std::string updateBlobId = "/flash/update"; |
Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 24 | const std::string verifyBlobId = "/flash/verify"; |
| 25 | const std::string hashBlobId = "/flash/hash"; |
| 26 | const std::string activeImageBlobId = "/flash/active/image"; |
| 27 | const std::string activeHashBlobId = "/flash/active/hash"; |
| 28 | const std::string staticLayoutBlobId = "/flash/image"; |
| 29 | const std::string ubiTarballBlobId = "/flash/tarball"; |
Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 30 | const std::string cleanupBlobId = "/flash/cleanup"; |
Patrick Venture | 7dad86f | 2019-05-17 08:52:20 -0700 | [diff] [blame] | 31 | |
Patrick Venture | 1d5a31c | 2019-05-20 11:38:22 -0700 | [diff] [blame] | 32 | } // namespace ipmi_flash |