commit | de5e76fa894a3e3ab28c2bdb4d7b7b460718fa01 | [log] [tgz] |
---|---|---|
author | Alexander Hansen <alexander.hansen@9elements.com> | Thu Feb 20 16:30:11 2025 +0100 |
committer | Alexander Hansen <alexander.hansen@9elements.com> | Wed Mar 19 11:23:16 2025 +0100 |
tree | 692c1bc7b0e28e4b665dffdae461e1c1b1a972f5 | |
parent | 8e44d57858723c76d662bca650a0b1c633d1ef0a [diff] |
fix object manager path and emit interfaces added - move object manager to the correct path - setup the bus name in constructor - emit 'InterfacesAdded' signal for object manager to find our software version Since properties can be uninitialized in the generated bindings, we have to initialize each property like version and version purpose. Since object mapper relies on 'InterfacesAdded' signal, emit that signal such that our version is found in the firmware inventory. Tested: on Tyan S8030 board with bios code updater Using dbus-monitor, verify that the signal was emitted for initial version. ``` dbus-monitor --system "sender='xyz.openbmc_project.Software.BIOS',member='InterfacesAdded'" signal time=1740740306.586571 sender=:1.266 -> destination=(null destination) serial=21 path=/xyz/openbmc_project/software; interface=org.freedesktop.DBus.ObjectManager; member=InterfacesAdded object path "/xyz/openbmc_project/software/HostSPIFlash_1520" array [ dict entry( string "xyz.openbmc_project.Software.Version" array [ dict entry( string "Version" variant string "v1.03" ) dict entry( string "Purpose" variant string "xyz.openbmc_project.Software.Version.VersionPurpose.Other" ) ] ) ] ``` Using object mapper, verify that it has picked up our initial version: ``` busctl call xyz.openbmc_project.ObjectMapper /xyz/openbmc_project/object_mapper xyz.openbmc_project.ObjectMapper GetSubTree sias /xyz/openbmc_project/ 0 1 xyz.openbmc_project.Software.Version ``` Not showing output here since it gets verbose. Checking the firmware inventory, the version also shows up: ``` { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory", "@odata.type": "#SoftwareInventoryCollection.SoftwareInventoryCollection", "Members": [ { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/5e6297dd" }, { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/HostSPIFlash_1520" }, { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/bios_active" } ], "Members@odata.count": 3, "Name": "Software Inventory Collection" } ``` Checking the specific entry: ``` curl $creds https://$bmc/redfish/v1/UpdateService/FirmwareInventory/HostSPIFlash_1520 { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/HostSPIFlash_1520", "@odata.type": "#SoftwareInventory.v1_1_0.SoftwareInventory", "Description": "Other image", "Id": "HostSPIFlash_1520", "Name": "Software Inventory", "Status": { "Health": "Warning", "HealthRollup": "OK", "State": "Disabled" }, "Updateable": false, "Version": "v1.03" } ``` Now, running an update: ``` curl -k --insecure --user root:root -H Content-Type:multipart/form-data -X POST -F 'UpdateParameters={"Targets":["/redfish/v1/UpdateService/FirmwareInventory/HostSPIFlash_1520"],"@Redfish.OperationApplyTime":"Immediate"};type=application/json' -F 'UpdateFile=@pldm-package.bin;type=application/octet-stream' https://${bmc}/redfish/v1/UpdateService/update { "@odata.id": "/redfish/v1/TaskService/Tasks/0", "@odata.type": "#Task.v1_4_3.Task", "Id": "0", "TaskState": "Running", "TaskStatus": "OK" } ``` Checking the task status: ``` curl --silent --insecure --user root:root https://${bmc}/redfish/v1/TaskService/Tasks/0 { "@odata.id": "/redfish/v1/TaskService/Tasks/0", "@odata.type": "#Task.v1_4_3.Task", "EndTime": "2025-02-28T11:10:55+00:00", "HidePayload": false, "Id": "0", "Messages": [ { "@odata.type": "#Message.v1_1_1.Message", "Message": "The task with Id '0' has started.", "MessageArgs": [ "0" ], "MessageId": "TaskEvent.1.0.TaskStarted", "MessageSeverity": "OK", "Resolution": "None." }, { "@odata.type": "#Message.v1_1_1.Message", "Message": "The task with Id '0' has changed to progress 10 percent complete.", "MessageArgs": [ "0", "10" ], "MessageId": "TaskEvent.1.0.TaskProgressChanged", "MessageSeverity": "OK", "Resolution": "None." }, { "@odata.type": "#Message.v1_1_1.Message", "Message": "The task with Id '0' has changed to progress 20 percent complete.", "MessageArgs": [ "0", "20" ], "MessageId": "TaskEvent.1.0.TaskProgressChanged", "MessageSeverity": "OK", "Resolution": "None." }, { "@odata.type": "#Message.v1_1_1.Message", "Message": "The task with Id '0' has changed to progress 70 percent complete.", "MessageArgs": [ "0", "70" ], "MessageId": "TaskEvent.1.0.TaskProgressChanged", "MessageSeverity": "OK", "Resolution": "None." }, { "@odata.type": "#Message.v1_1_1.Message", "Message": "The task with Id '0' has changed to progress 100 percent complete.", "MessageArgs": [ "0", "100" ], "MessageId": "TaskEvent.1.0.TaskProgressChanged", "MessageSeverity": "OK", "Resolution": "None." }, { "@odata.type": "#Message.v1_1_1.Message", "Message": "The task with Id '0' has completed.", "MessageArgs": [ "0" ], "MessageId": "TaskEvent.1.0.TaskCompletedOK", "MessageSeverity": "OK", "Resolution": "None." } ], "Name": "Task 0", "Payload": { "HttpHeaders": [], "HttpOperation": "POST", "JsonBody": "null", "TargetUri": "/redfish/v1/UpdateService/update" }, "PercentComplete": 100, "StartTime": "2025-02-28T11:10:28+00:00", "TaskMonitor": "/redfish/v1/TaskService/TaskMonitors/0", "TaskState": "Completed", "TaskStatus": "OK" } ``` Successfully applied this update and the firmware inventory is changed as expected ``` { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory", "@odata.type": "#SoftwareInventoryCollection.SoftwareInventoryCollection", "Members": [ { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/5e6297dd" }, { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/HostSPIFlash_1149" }, { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/bios_active" } ], "Members@odata.count": 3, "Name": "Software Inventory Collection" } ``` Checking the object mapper, it is also aware of the new version. Change-Id: If45158be3ae486e94ae2feb37ce8163b5f795054 Signed-off-by: Alexander Hansen <alexander.hansen@9elements.com>
Phosphor BMC Code Management provides a set of system software management applications. More information can be found at Software Architecture
To build this package, do the following steps:
meson build
ninja -C build
To clean the repository run rm -r build
.