| *** Settings *** |
| Documentation Update the BMC code on a target BMC. |
| ... Execution Method: |
| ... python -m robot -v OPENBMC_HOST:<hostname> |
| ... -v IMAGE_FILE_PATH:<path/*.tar> bmc_code_update.robot |
| |
| Library ../../lib/code_update_utils.py |
| Variables ../../data/variables.py |
| Resource ../../lib/boot_utils.robot |
| Resource code_update_utils.robot |
| Resource ../../lib/code_update_utils.robot |
| Resource ../lib/openbmc_ffdc.robot |
| |
| Test Teardown FFDC On Test Case Fail |
| |
| *** Variables *** |
| |
| ${QUIET} ${1} |
| ${IMAGE_FILE_PATH} ${EMPTY} |
| |
| *** Test Cases *** |
| |
| REST BMC Code Update |
| [Documentation] Do a BMC code update by uploading image on BMC via REST. |
| [Tags] REST_BMC_Code_Update |
| |
| Upload And Activate Image ${IMAGE_FILE_PATH} |
| OBMC Reboot (off) |
| |
| |
| Delete BMC Image |
| [Documentation] Delete a BMC image from the BMC flash chip. |
| [Tags] Delete_BMC_Image |
| |
| ${software_object}= Get Non Running BMC Software Object |
| Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC} |