#
16c2a0a0 |
| 16-Aug-2024 |
Patrick Williams <patrick@stwcx.xyz> |
clang-format: re-format for clang-18
clang-format-18 isn't compatible with the clang-format-17 output, so we need to reformat the code with the latest version. The way clang-18 handles lambda forma
clang-format: re-format for clang-18
clang-format-18 isn't compatible with the clang-format-17 output, so we need to reformat the code with the latest version. The way clang-18 handles lambda formatting also changed, so we have made changes to the organization default style format to better handle lambda formatting.
See I5e08687e696dd240402a2780158664b7113def0e for updated style. See Iea0776aaa7edd483fa395e23de25ebf5a6288f71 for clang-18 enablement.
Change-Id: I8c84201cb2343a8c8a5507a49de0721a1bee7063 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
526461a0 |
| 11-Jan-2023 |
Chinmay Shripad Hegde <hosmanechinmay@gmail.com> |
fwupdate: pldmtool - add QueryDeviceIdentifiers
QueryDeviceIdentifiers is used to determine if the firmware update package is applicable for updating a specific FD by comparing device identifier rec
fwupdate: pldmtool - add QueryDeviceIdentifiers
QueryDeviceIdentifiers is used to determine if the firmware update package is applicable for updating a specific FD by comparing device identifier records in the package header to those obtained from the FD.This patch adds support for QueryDeviceIdentifiers in pldmtool.
Command Usage:
``` pldmtool fw_update QueryDeviceIdentifiers -m <EID>
pldmtool fw_update QueryDeviceIdentifiers -m 0 { "EID": 0, "Descriptors": [ { "Type": "IANA Enterprise ID", "Value": [ "58270000" ] }, { "Type": "UUID", "Value": [ "273034c83ec4511695f548701e48d764" ] }, { "Type": "Vendor Defined", "Value": [ { "TESTID1": "30" }, { "TESTID2": "40" } ] } ] }
```
Unit Tests: 1. Verify QueryDeviceIdentifiers response with single descriptors 2. Verify QueryDeviceIdentifiers response with multiple descriptors of same type 3. Compare query device identifiers with raw response from FD
Signed-off-by: Chinmay Shripad Hegde <hosmanechinmay@gmail.com> Change-Id: I28b7a368138803dd4407edd06667d8be8b801a2c
show more ...
|
#
c453e164 |
| 21-Dec-2022 |
George Liu <liuxiwei@inspur.com> |
libpldm: Correct reference to libpldm header files
When relying on header files from external libraries, #include<> should be used instead of #include "" to avoid ambiguity.
Tested: Built pldm succ
libpldm: Correct reference to libpldm header files
When relying on header files from external libraries, #include<> should be used instead of #include "" to avoid ambiguity.
Tested: Built pldm successfully after enabling ibm-oem
Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: Ia1997de7e0f61564055bbd837f4e24c8f14e55a5
show more ...
|
#
6f2a2489 |
| 27-Oct-2021 |
Tom Joseph <rushtotom@gmail.com> |
pldmtool: Add GetFirmwareParameters firmware update command
Tested:
pldmtool fw_update GetFwParams -m <eid> { "CapabilitiesDuringUpdate": { "Component Update Failure Recovery Capability
pldmtool: Add GetFirmwareParameters firmware update command
Tested:
pldmtool fw_update GetFwParams -m <eid> { "CapabilitiesDuringUpdate": { "Component Update Failure Recovery Capability": "Device will revert to previous component image upon failure, timeout or cancellation of the transfer.", "Component Update Failure Retry Capability": " Device can have component updated again without exiting update mode and restarting transfer via RequestUpdate command.", "Firmware Device Partial Updates": "Firmware Device cannot accept a partial update and all components present on the FD shall be updated.", "Firmware Device Host Functionality during Firmware Update": "Device will revert to previous component image upon failure, timeout or cancellation of the transfer", "Firmware Device Update Mode Restrictions": "No host OS environment restriction for update mode" }, "ComponentCount": 2, "ActiveComponentImageSetVersionString": "XXXXXXXX", "PendingComponentImageSetVersionString": "", "ComponentParameterEntries": [ { "ComponentClassification": "Firmware", "ComponentIdentifier": 1, "ComponentClassificationIndex": 0, "ActiveComponentComparisonStamp": 0, "ActiveComponentReleaseDate": "", "PendingComponentComparisonStamp": 0, "PendingComponentReleaseDate": "", "ComponentActivationMethods": [ "System reboot" ], "CapabilitiesDuringUpdate": { "Firmware Device apply state functionality": " Firmware Device will execute an operation during the APPLY state which will include migrating the new component image to its final non-volatile storage destination." }, "ActiveComponentVersionString": "XXXXXXXX", "PendingComponentVersionString": "" }, { "ComponentClassification": "Firmware", "ComponentIdentifier": 2, "ComponentClassificationIndex": 0, "ActiveComponentComparisonStamp": 0, "ActiveComponentReleaseDate": "", "PendingComponentComparisonStamp": 0, "PendingComponentReleaseDate": "", "ComponentActivationMethods": [ "System reboot" ], "CapabilitiesDuringUpdate": { "Firmware Device apply state functionality": " Firmware Device will execute an operation during the APPLY state which will include migrating the new component image to its final non-volatile storage destination." }, "ActiveComponentVersionString": "XXXXXXXX", "PendingComponentVersionString": "" } ] }
Signed-off-by: Tom Joseph <rushtotom@gmail.com> Change-Id: I1370beca144853f3b638a7541a8589282ccf1273
show more ...
|
#
eea835a9 |
| 25-Oct-2021 |
Tom Joseph <rushtotom@gmail.com> |
pldmtool: Add GetStatus firmware update command Tested: pldmtool fw_update --help firmware update type commands Usage: ./pldmtool fw_update [OPTIONS] SUBCOMMAND Options:
pldmtool: Add GetStatus firmware update command Tested: pldmtool fw_update --help firmware update type commands Usage: ./pldmtool fw_update [OPTIONS] SUBCOMMAND Options: -h,--help Print this help message and exit Subcommands: GetStatus Status of the FD pldmtool fw_update GetStatus -m <eid> { "CurrentState": "IDLE", "PreviousState": "IDLE", "AuxState": "Not applicable in current state", "AuxStateStatus": "AuxState is In Progress or Success", "ProgressPercent": 101, "ReasonCode": "Initialization of firmware device has occurred", "UpdateOptionFlagsEnabled": 0 } Signed-off-by: Tom Joseph <rushtotom@gmail.com> Change-Id: I2eb41996ab0dcb1d00ac5b8b0e55846b0d4b28a5
show more ...
|