firmware-update: Increase BMC firmware size
As BMC Firmware size is increased, firmware update via KCS is not
allow if BMC firmware size is crossing 33MB.
So increase BMC FW size to 35MB.
Tested:
Able to process the file using KCS interface and BMC firmware update
successful.
Signed-off-by: Jayaprakash Mutyala <mutyalax.jayaprakash@intel.com>
Change-Id: I292a36c55072177ceda075558c9df62ae790e934
diff --git a/src/firmware-update.cpp b/src/firmware-update.cpp
index 8a8a53d..a9a7d72 100644
--- a/src/firmware-update.cpp
+++ b/src/firmware-update.cpp
@@ -167,7 +167,7 @@
{
return 1024u * 1024u * v;
}
-static constexpr size_t maxFirmwareImageSize = 33_MB;
+static constexpr size_t maxFirmwareImageSize = 35_MB;
static bool localDownloadInProgress(void)
{