commit | 131327ee7d22abd970acbc2b6466ed0337457374 | [log] [tgz] |
---|---|---|
author | Adriana Kobylak <anoo@us.ibm.com> | Wed Mar 10 18:45:24 2021 +0000 |
committer | Sampa Misra <sampmisr@in.ibm.com> | Tue Mar 23 06:33:41 2021 +0000 |
tree | 817eb027faa2c919edf4f931dd7b81d17ef2e424 | |
parent | 303387e940f1fc69923e75b34055d2a9d3ce0059 [diff] |
oem-ibm: Fix the hostfw image file name The name of the hostfw image file should be image-hostfw, not image-host-fw: https://github.com/openbmc/openbmc/blob/50c538c2b942fecba6fa1fc3cfe0f5a339f10999/meta-phosphor/classes/phosphor-software-manager-mmc.bbclass#L7 Tested: Verified inband code update updated this the hostfw image file. Signed-off-by: Adriana Kobylak <anoo@us.ibm.com> Change-Id: I64fc78190682bcc8acfe9255b1deb27cf7ff71e0
diff --git a/oem/ibm/libpldmresponder/inband_code_update.cpp b/oem/ibm/libpldmresponder/inband_code_update.cpp index fab3023..723caad 100644 --- a/oem/ibm/libpldmresponder/inband_code_update.cpp +++ b/oem/ibm/libpldmresponder/inband_code_update.cpp
@@ -32,7 +32,7 @@ constexpr auto tarImageName = "image.tar"; /** @brief The file name of the hostfw image */ -constexpr auto hostfwImageName = "image-host-fw"; +constexpr auto hostfwImageName = "image-hostfw"; /** @brief The path to the code update tarball file */ auto tarImagePath = fs::path(imageDirPath) / tarImageName;