Tom Joseph | 1f4df21 | 2020-02-06 15:48:41 +0530 | [diff] [blame] | 1 | # This is the master config file for generating PLDM FRU records from the D-Bus |
| 2 | # inventory objects. "service" is the name of D-Bus service hosting the |
| 3 | # inventory D-Bus objects, "root_path" is the root path for all the inventory |
| 4 | # D-Bus objects and "interfaces" section specifies the type of FRU's for which, |
| 5 | # FRU records will be created in the FRU table. In this example, PLDM FRU |
| 6 | # records will be created for all FRU's of type Board and CPU. For each FRU |
| 7 | # type, corresponding config JSON's are needed for each record. In the example |
| 8 | # directory, Board_General.json is the config to generate the General FRU record |
| 9 | # for FRU of type Board and Board_VINI.json is the config to generate the OEM |
| 10 | # record (VINI is a record in IBM IPZ VPD format) for FRU of type Board. For all |
| 11 | # instances of the same FRU, the same config JSON will apply. |
| 12 | { |
| 13 | "service":"xyz.openbmc_project.Inventory.Manager", |
| 14 | "root_path":"/xyz/openbmc_project/inventory/system/", |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 15 | "entities":[ |
| 16 | { |
| 17 | "interface" : "xyz.openbmc_project.Inventory.Item.Board", |
| 18 | "entity_type" : 64 |
| 19 | }, |
| 20 | { |
| 21 | "interface" : "xyz.openbmc_project.Inventory.Item.Cpu", |
| 22 | "entity_type" : 135 |
| 23 | } |
Tom Joseph | 1f4df21 | 2020-02-06 15:48:41 +0530 | [diff] [blame] | 24 | ] |
| 25 | } |