OpenPOWER: Add support for Hostboot dump.

Hostboot dump is a dump created during the boot failure
on OpenPOWER based systems.
The dump get extracted from Self Boot Engine(SBE) with
the openpower-dump-manager application.
That application will call into phosphor-dump-manager
to create a dump with the data collected from each
SBE in the system.

Role of phosphor-debug-collector hostboot dump manager

 - Create the hostboot dump package directory
 - Create hostboot dump entry
 - Implement notify interface to get notified when the
   collection is completed
 - Once notified collect each file from the predefined
   location and package it into a dump.
 - Update the hostboot dump entry with details once
   dump packaging is completed.

Tested:
- Create a dump entry with busctl
- create a dummy file in search path
- Call notify with busctl

Signed-off-by: Dhruvaraj Subhshchandran <dhruvaraj@in.ibm.com>
Change-Id: I2dab3b7ca976ed33184f770722cca00b1b02c075
diff --git a/dump_manager_main.cpp b/dump_manager_main.cpp
index 402cea3..380134d 100644
--- a/dump_manager_main.cpp
+++ b/dump_manager_main.cpp
@@ -85,7 +85,7 @@
                 FAULTLOG_DUMP_PATH);
         dumpMgrList.push_back(std::move(faultLogMgr));
 
-        phosphor::dump::loadExtensions(bus, dumpMgrList);
+        phosphor::dump::loadExtensions(bus, eventP, dumpMgrList);
 
         // Restore dbus objects of all dumps
         for (auto& dmpMgr : dumpMgrList)