The Host OS has booted however the BootProgress show its Off..
$curl -c cjar -b cjar -k -H "Content-Type: application/json" -X GET https://xx.xx.xx.xx/org/openbmc/sensors/host/BootProgress
{
"data": {
"error": 0,
"units": "",
"value": "Off"
},
"message": "200 OK",
"status": "ok"
}
Couple of questions here:
I believe we need to get the HOST IPMI interface enabled to get this sensor populated. That bringup work is imminent. Will have to talk with @bradbishop about a new xyz. sensor value for it.
Just need to update the sensors list in Witherspoon.py to match what's in the MRW/hostboot.
With my change:
"/org/openbmc/sensors/host/BootCount": {
"error": 0,
"units": "",
"value": 2
},
"/org/openbmc/sensors/host/BootProgress": {
"error": 0,
"units": "",
"value": "FW Progress, Starting OS"
},
# obmcutil state
= HOST_BOOTED
Closing as this change working is verified on driver.. Thanks
Most helpful comment
With my change: