You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I saw that smbios-mdr was exposing information such as Quad-Core Intel Xeon processor 3200 Series as "Family" under the xyz.openbmc_project.Inventory.Item.Cpu interface.
According to this, it looks like instead of "Family" (which gets parsed as EffectiveFamily in bmcweb), we should really be adding this "Family" information to xyz.openbmc_project.Inventory.Decorator.Asset interface's .Model inventory, which is already mapped correctly in bmcweb https://github.com/openbmc/bmcweb/blob/master/redfish-core/lib/processor.hpp#L294-L302
The text was updated successfully, but these errors were encountered:
While trying to figure out how to expose CPU ID Family, Model, Stepping and Microcode information in bmcweb: https://gerrit.openbmc-project.xyz/c/openbmc/bmcweb/+/46884
I saw that smbios-mdr was exposing information such as
Quad-Core Intel Xeon processor 3200 Series
as "Family" under thexyz.openbmc_project.Inventory.Item.Cpu
interface.smbios-mdr/include/cpu.hpp
Lines 48 to 79 in e7cf319
Looking at the Redfish Resource and Schema guide at https://www.dmtf.org/sites/default/files/standards/documents/DSP2046_2021.2.pdf
Section 6.86.6 at page 668, we see:
According to this, it looks like instead of "Family" (which gets parsed as
EffectiveFamily
in bmcweb), we should really be adding this "Family" information toxyz.openbmc_project.Inventory.Decorator.Asset
interface's.Model
inventory, which is already mapped correctly in bmcweb https://github.com/openbmc/bmcweb/blob/master/redfish-core/lib/processor.hpp#L294-L302The text was updated successfully, but these errors were encountered: