summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fru-read-example.yaml5
-rw-r--r--scripts/readfru.mako.cpp12
2 files changed, 12 insertions, 5 deletions
diff --git a/scripts/fru-read-example.yaml b/scripts/fru-read-example.yaml
index 8c6074c..86151af 100644
--- a/scripts/fru-read-example.yaml
+++ b/scripts/fru-read-example.yaml
@@ -33,6 +33,7 @@
Version:
IPMIFruProperty: Version
IPMIFruSection: Product
+ xyz.openbmc_project.Inventory.Item.System:
1:
/system/chassis/motherboard/dimm0:
xyz.openbmc_project.Inventory.Item:
@@ -56,6 +57,7 @@
Version:
IPMIFruProperty: Version
IPMIFruSection: Product
+ xyz.openbmc_project.Inventory.Item.Dimm:
2:
/system/chassis/motherboard/dimm1:
xyz.openbmc_project.Inventory.Item:
@@ -79,6 +81,7 @@
Version:
IPMIFruProperty: Version
IPMIFruSection: Product
+ xyz.openbmc_project.Inventory.Item.Dimm:
3:
/system/chassis/motherboard/cpu0:
xyz.openbmc_project.Inventory.Item:
@@ -98,6 +101,7 @@
Manufacturer:
IPMIFruProperty: Manufacturer
IPMIFruSection: Board
+ xyz.openbmc_project.Inventory.Item.Cpu:
4:
/system/chassis/motherboard/cpu1:
xyz.openbmc_project.Inventory.Item:
@@ -117,3 +121,4 @@
Manufacturer:
IPMIFruProperty: Manufacturer
IPMIFruSection: Board
+ xyz.openbmc_project.Inventory.Item.Cpu:
diff --git a/scripts/readfru.mako.cpp b/scripts/readfru.mako.cpp
index 40e4812..061b4e0 100644
--- a/scripts/readfru.mako.cpp
+++ b/scripts/readfru.mako.cpp
@@ -12,10 +12,11 @@ extern const FruMap frus = {
{"${object}",{
% for interface,properties in interfaces.items():
{"${interface}",{
- % for dbus_property,property_value in properties.items():
- {"${dbus_property}",{
- "${property_value.get("IPMIFruSection", "")}",
- "${property_value.get("IPMIFruProperty", "")}",\
+ % if properties:
+ % for dbus_property,property_value in properties.items():
+ {"${dbus_property}",{
+ "${property_value.get("IPMIFruSection", "")}",
+ "${property_value.get("IPMIFruProperty", "")}", \
<%
delimiter = property_value.get("IPMIFruValueDelimiter")
if not delimiter:
@@ -25,7 +26,8 @@ extern const FruMap frus = {
%>
"${delimiter}"
}},
- % endfor
+ % endfor
+ %endif
}},
% endfor
}},
OpenPOWER on IntegriCloud