inventory: update extra properties

Change-Id: I23abf88d877ef1bceb312121fb5e1e5d91a068ad
Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
diff --git a/writefru.mako.hpp b/writefru.mako.hpp
index 9275e9f..8912738 100755
--- a/writefru.mako.hpp
+++ b/writefru.mako.hpp
@@ -11,6 +11,7 @@
 #include "store.hpp"
 #include "types.hpp"
 #include "utils.hpp"
+#include "extra-properties-gen.hpp"
 
 namespace openpower
 {
@@ -64,6 +65,14 @@
     % endfor
 
     sdbusplus::message::object_path object(path);
+    // Check and update extra properties
+    if(extra::objects.end() != extra::objects.find(path))
+    {
+        for(const auto& entry : extra::objects.at(path))
+        {
+            interfaces.emplace(entry.first, entry.second);
+        }
+    }
     objects.emplace(std::move(object), std::move(interfaces));
 
     callPIM(std::move(objects));