mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-11 02:57:22 +00:00
Handle timeout completion code C3h in SaveFirmwareImage
This commit is contained in:
parent
c78911c730
commit
68afc1b001
@ -1049,7 +1049,21 @@ static tKFWUM_Status KfwumSaveFirmwareImage(struct ipmi_intf * intf,
|
|||||||
{
|
{
|
||||||
retry = 1;
|
retry = 1;
|
||||||
status = KFWUM_STATUS_OK;
|
status = KFWUM_STATUS_OK;
|
||||||
}else
|
}
|
||||||
|
else if(rsp->ccode == 0xC3)
|
||||||
|
{
|
||||||
|
if(retry == 0)
|
||||||
|
{
|
||||||
|
retry = 1;
|
||||||
|
status = KFWUM_STATUS_OK;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
status = KFWUM_STATUS_ERROR;
|
||||||
|
out = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
printf("FWUM Firmware Save Firmware Image Download returned %x\n",
|
printf("FWUM Firmware Save Firmware Image Download returned %x\n",
|
||||||
rsp->ccode);
|
rsp->ccode);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user