Openbmc: Host Sensor Property BootProgress shows Off [System w37 v1.99.1-82-gbfd622e ]

Created on 2 Feb 2017  路  5Comments  路  Source: openbmc/openbmc

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:

  1. BootProgress "Off" is this expected now ? we normally see's some string like this "FW Progress, Starting OS"
  1. Now the Power on/ off interface is available in xyz as well.. are there going to be equivalent for BootProgress for Host in xyz ?
bug

Most helpful comment

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

All 5 comments

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

Was this page helpful?
0 / 5 - 0 ratings