blob: 7801ea358ebaedbdbae8a4497d3b63d201473aee [file] [log] [blame]
Gunnar Millsb0ce9962018-09-07 13:39:10 -05001#include "config.h"
2
Lei YU1be8d502018-06-20 11:48:36 +08003#include <string>
4#include <vector>
5
Lei YU1be8d502018-06-20 11:48:36 +08006namespace phosphor
7{
8namespace software
9{
10namespace image
11{
12
13// BMC flash image file name list.
Lei YU1be8d502018-06-20 11:48:36 +080014const std::vector<std::string> bmcImages = {"image-kernel", "image-rofs",
15 "image-rwfs", "image-u-boot"};
Bright Cheng8e9ccfe2019-11-18 16:18:44 +080016// BMC flash image file name list for full flash image (image-bmc)
17const std::string bmcFullImages = {"image-bmc"};
Lei YU1be8d502018-06-20 11:48:36 +080018
Adriana Kobylak73609bb2020-06-18 15:05:40 -050019std::vector<std::string> getOptionalImages();
20
Lei YU1be8d502018-06-20 11:48:36 +080021} // namespace image
22} // namespace software
23} // namespace phosphor