blob: bcadd31d35092c105019204e4ce5578c635be91f [file] [log] [blame]
#pragma once
#include "handler.hpp"
#include <ipmiblob/blob_interface.hpp>
#include <string>
namespace host_tool
{
/**
* Attempt to update the BMC's firmware using the interface provided.
*
* @param[in] updater - update handler object.
* @param[in] blob - ipmi blob object.
* @param[in] imagePath - the path to the image file.
* @param[in] signaturePath - the path to the signature file.
* @param[in] layoutType - the image update layout type (static/ubi/other)
* @param[in] ignoreUpdate - determines whether to ignore the update status
* @throws ToolException on failures.
*/
void updaterMain(UpdateHandlerInterface* updater, ipmiblob::BlobInterface* blob,
const std::string& imagePath, const std::string& signaturePath,
const std::string& layoutType, bool ignoreUpdate);
} // namespace host_tool