Two BMC Code layouts are available:
obmc-ubi-fs
distro featureThis document describes the code update that supports both layouts.
The following are the steps to update the BMC.
tmp/deploy/images/<platform>/
.obmc-phosphor-image-<platform>-<timestamp>.ubi.mtd.tar
obmc-phosphor-image-<platform>-<timestamp>.static.mtd.tar
The BMC tar image contains 5 files: u-boot, kernel, ro, and rw partitions and the MANIFEST file, which contains information about the image such as the image purpose, version, KeyType (Key type used for signature), HashType (SHA type used for key generation) and MachineName (name of machine used while building image, and this will be used for validation of image build). A MANIFEST file might look like
purpose=xyz.openbmc_project.Software.Version.VersionPurpose.BMC version=2.7.0-dev KeyType=OpenBMC HashType=RSA-SHA256 MachineName=tiogapass
/tmp/images/
directory on the BMC.DownloadViaTFTP
method of /xyz/openbmc_project/software
.Method 1: From the BMC command line, note the most recent directory name created under /tmp/images/
, in this example it'd be 2a1022fe
:
# ls -l /tmp/images/ total 0 drwx------ 2 root root 80 Aug 22 07:54 2a1022fe drwx------ 2 root root 80 Aug 22 07:53 488449a2
Method 2: This method only works if there are no Ready
images at the start of transferring the image. Using the REST API, note the object that has its Activation property set to Ready, in this example it'd be 2a1022fe
:
$ curl -b cjar -k https://${bmc}/xyz/openbmc_project/software/enumerate { "data": { "/xyz/openbmc_project/software/2a1022fe": { "Activation": "xyz.openbmc_project.Software.Activation.Activations.Ready",
Method 3: Calculate the version id beforehand from the image with:
tar xfO <BMC tar image> MANIFEST | sed -ne '/version=/ {s/version=//;p}' | head -n1 | tr -d '\n' | sha512sum | cut -b 1-8
RequestedActivation
property of the desired image to Active
, substitute <id>
with the hash value noted on the previous step, this will write the contents of the image to the BMC chip via one of the following methods:Method 1: From the BMC command line:
busctl set-property xyz.openbmc_project.Software.BMC.Updater \ /xyz/openbmc_project/software/<id> \ xyz.openbmc_project.Software.Activation RequestedActivation s \ xyz.openbmc_project.Software.Activation.RequestedActivations.Active
Method 2: Using the REST API:
curl -b cjar -k -H "Content-Type: application/json" -X PUT \ -d '{"data": "xyz.openbmc_project.Software.Activation.RequestedActivations.Active"}' \ https://${bmc}/xyz/openbmc_project/software/<id>/attr/RequestedActivation
Method 1: From the BMC command line:
busctl get-property xyz.openbmc_project.Software.BMC.Updater \ /xyz/openbmc_project/software/<id> \ xyz.openbmc_project.Software.ActivationProgress Progress
Method 2: Using the REST API:
curl -b cjar -k https://${bmc}/xyz/openbmc_project/software/<id>/attr/Progress
Method 1: From the BMC command line:
busctl get-property xyz.openbmc_project.Software.BMC.Updater \ /xyz/openbmc_project/software/<id> \ xyz.openbmc_project.Software.Activation Activation
Method 2: Using the REST API:
curl -b cjar -k https://${bmc}/xyz/openbmc_project/software/<id>
Method 1: From the BMC command line:
reboot
Method 2: Using the REST API:
curl -c cjar -b cjar -k -H "Content-Type: application/json" -X PUT \ -d '{"data": "xyz.openbmc_project.State.BMC.Transition.Reboot"}' \ https://${bmc}/xyz/openbmc_project/state/bmc0/attr/RequestedBMCTransition
In addition to all software images, several associations are listed at /xyz/openbmc_project/software/
:
curl -c cjar -b cjar -k -H "Content-Type: application/json" -X GET \ https://${bmc}/xyz/openbmc_project/software/ { "data": [ "/xyz/openbmc_project/software/46e65782", "/xyz/openbmc_project/software/493a00ad", "/xyz/openbmc_project/software/88c153b1", "/xyz/openbmc_project/software/active", "/xyz/openbmc_project/software/functional" ], "message": "200 OK", "status": "ok" }
There is only one functional association per BMC and one functional association per host. The functional/running BMC image is the BMC image with the lowest priority when rebooting the BMC. The functional image does not update until the BMC is rebooted. The functional host image behaves the same way except that it updates on a power on or reboot of the host.
curl -c cjar -b cjar -k -H "Content-Type: application/json" -X GET \ https://${bmc}/xyz/openbmc_project/software/functional { "data": { "endpoints": [ "/xyz/openbmc_project/software/46e65782", "/xyz/openbmc_project/software/493a00ad" ] }, "message": "200 OK", "status": "ok" }
Note: Several BMC images might be active, this is true for the host images as well.
curl -c cjar -b cjar -k -H "Content-Type: application/json" -X GET \ https://${bmc}/xyz/openbmc_project/software/active { "data": { "endpoints": [ "/xyz/openbmc_project/software/46e65782", "/xyz/openbmc_project/software/493a00ad", "/xyz/openbmc_project/software/88c153b1" ] }, "message": "200 OK", "status": "ok" }
This is used for identifying firmware components which are programmable via BMC OOB interfaces like Redfish/IPMI. All updateable firmware components must expose the updateable association so that upper applications like Redfish/IPMI will know about updateable firmwares.
To know the updateable software components:
# busctl call xyz.openbmc_project.ObjectMapper \ /xyz/openbmc_project/software/updatable org.freedesktop.DBus.Properties \ Get ss xyz.openbmc_project.Association endpoints v as 1 "/xyz/openbmc_project/software/1201fc36"
Redfish interface uses 'updateable' association in SoftwareInventory schema.
/xyz/openbmc_project/software/<id>/inventory
for "associating" a software image with an inventory item.curl -c cjar -b cjar -k -H "Content-Type: application/json" -X GET \ https://${bmc}/xyz/openbmc_project/software/493a00ad/inventory { "data": { "endpoints": [ "/xyz/openbmc_project/inventory/system/chassis/motherboard/boxelder/bmc" ] }, "message": "200 OK", "status": "ok" }
To get all software images associated with an inventory item:
curl -c cjar -b cjar -k -H "Content-Type: application/json" -X GET \ https://${bmc}/xyz/openbmc_project/inventory/system/chassis/activation { "data": { "endpoints": [ "/xyz/openbmc_project/software/46e65782" ] }, "message": "200 OK", "status": "ok" }
A file named "MANIFEST" must be included in any image tar uploaded, downloaded via TFTP, or copied to the BMC.
The MANIFEST file format must be key=value (e.g. version=v1.99.10). It should include the following fields:
Other optional fields are:
To delete an image:
curl -c cjar -b cjar -k -H "Content-Type: application/json" \ -X POST https://${bmc}/xyz/openbmc_project/software/<$id>/action/delete \ -d "{\"data\": [] }"
Note: The image must be non-functional ("non-running").
To delete all non-functional images, whether BMC or host images:
curl -c cjar -b cjar -k -H "Content-Type: application/json" \ -X POST https://${bmc}/xyz/openbmc_project/software/action/deleteAll \ -d "{\"data\": [] }"
Field mode is meant for systems shipped from manufacturing to a customer. Field mode offers a way to provide security and ensure incorrect patches don't get loaded on the system by accident. The software implementation of the field mode interface disables patching of the BMC by not mounting /usr/local
, which in turn disables host patching at /usr/local/share/pnor/
. Enabling field mode is intended to be a one-way operation which means that once enabled, there is no REST API provided to disable it.
Field mode can be enabled by running the following command:
curl -b cjar -k -H 'Content-Type: application/json' -X PUT -d '{"data":1}' \ https://${bmc}/xyz/openbmc_project/software/attr/FieldModeEnabled
Although field mode is meant to be a one-way operation, it can be disabled by a user with admin privileges by running the following commands on the BMC:
fw_setenv fieldmode systemctl unmask usr-local.mount reboot
More information on field mode can be found here: https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/xyz/openbmc_project/Control/FieldMode.interface.yaml
Software factory reset resets the BMC and host firmware to its factory state by clearing out any read/write data. To software factory reset run the following command and then reboot the BMC:
curl -b cjar -k -H 'Content-Type: application/json' -X POST -d '{"data":[]}' \ https://${bmc}/xyz/openbmc_project/software/action/Reset
The factory reset on the BMC side will clear /var
, /home
, and /etc
. On the host side, the factory reset will clear the read/write volume for each host image on the system, clear the shared preserve host volume, pnor-prsv, and clear any host patches located in /usr/local/share/pnor/
.
The factory reset interface can be found here: https://github.com/openbmc/phosphor-dbus-interfaces/blob/02b39246d45ea029a1652a49cc20eab7723dd63b/xyz/openbmc_project/Common/FactoryReset.interface.yaml
When a BMC image is activated, each image-<name>
is written to the BMC chip's partitions indicated by the <name>
:
When a BMC image is activated (i.e. when "RequestedActivation" is set to "Active"), UBI volumes are created on the BMC chip for the image. The alternate BMC chip can also be used to store images. This is determined by "BMC_RO_MTD". Using both the alternate BMC chip and the BMC chip allows for multiple BMC images to be stored. By default, only the BMC chip is used. To use both, set "BMC_RO_MTD" to "alt-bmc+bmc".
More information about the implementation of the code update can be found at https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/xyz/openbmc_project/Software and https://github.com/openbmc/phosphor-bmc-code-mgmt