From e19540e6d8e96e205978712a698e83f676553360 Mon Sep 17 00:00:00 2001 From: Tom Joseph Date: Mon, 4 Feb 2019 14:06:58 +0530 Subject: Revert "eSEL: Remove unused code related to logging eSEL" This reverts commit 54fad6de0541c2f98e9b511f1d30bbcbcd743db6. This commit is reverted because the mapping of D-Bus object path to sensor information is still needed. The mapping is needed to serve the SEL commands which translate D-Bus logging objects to SEL entries. Change-Id: I2505299671db1f0bd7f116ef0e2ca4a0273eead8 --- scripts/inventorysensor.mako.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 scripts/inventorysensor.mako.cpp (limited to 'scripts/inventorysensor.mako.cpp') diff --git a/scripts/inventorysensor.mako.cpp b/scripts/inventorysensor.mako.cpp new file mode 100644 index 0000000..000f758 --- /dev/null +++ b/scripts/inventorysensor.mako.cpp @@ -0,0 +1,27 @@ +## This file is a template. The comment below is emitted +## into the rendered file; feel free to edit this file. + +// !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!! + +#include "types.hpp" +using namespace ipmi::sensor; + +extern const InvObjectIDMap invSensors = { +% for key in sensorDict.iterkeys(): + % if key: +{"${key}", + { +<% + objectPath = sensorDict[key] + sensorID = objectPath["sensorID"] + sensorType = objectPath["sensorType"] + eventReadingType = objectPath["eventReadingType"] + offset = objectPath["offset"] +%> + ${sensorID},${sensorType},${eventReadingType},${offset} + } +}, + % endif +% endfor +}; + -- cgit v1.2.1