2
0
mirror of https://opendev.org/x/pyghmi synced 2026-01-11 18:52:33 +00:00

Merge "workaround for kent fw defect 45862"

This commit is contained in:
Zuul
2021-09-13 12:36:15 +00:00
committed by Gerrit Code Review
3 changed files with 5 additions and 3 deletions

View File

@@ -47,6 +47,7 @@ def get_categories():
"cpu": {
"idstr": "CPU {0}",
"parser": parse_cpu_info,
"command": cpu_cmd
"command": cpu_cmd,
"workaround_bmc_bug": lambda t: t == "ami"
}
}

View File

@@ -54,6 +54,6 @@ def get_categories():
"idstr": "DIMM {0}",
"parser": parse_dimm_info,
"command": dimm_cmd,
"workaround_bmc_bug": True
"workaround_bmc_bug": lambda t: True
}
}

View File

@@ -56,6 +56,7 @@ def get_categories():
"netfn": 0x06,
"command": 0x59,
"data": (0x00, 0xc1, 0x03, 0x00)
}
},
"workaround_bmc_bug": lambda t: t == "ami"
}
}