Change application and interface names to Crashdump
Crashdump is the preferred name, so replace all uses of
CPU Log with Crashdump.
Tested: On-demand crashdump functions correctly
Change-Id: I6cf8fb81bc8f2e85dd4a3561835f3fafbff764e5
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
diff --git a/redfish-core/include/redfish.hpp b/redfish-core/include/redfish.hpp
index 49cface..866eaed 100644
--- a/redfish-core/include/redfish.hpp
+++ b/redfish-core/include/redfish.hpp
@@ -86,10 +86,10 @@
#endif
#ifdef BMCWEB_ENABLE_REDFISH_CPU_LOG
- nodes.emplace_back(std::make_unique<CPULogService>(app));
- nodes.emplace_back(std::make_unique<CPULogEntryCollection>(app));
- nodes.emplace_back(std::make_unique<CPULogEntry>(app));
- nodes.emplace_back(std::make_unique<OnDemandCPULog>(app));
+ nodes.emplace_back(std::make_unique<CrashdumpService>(app));
+ nodes.emplace_back(std::make_unique<CrashdumpEntryCollection>(app));
+ nodes.emplace_back(std::make_unique<CrashdumpEntry>(app));
+ nodes.emplace_back(std::make_unique<OnDemandCrashdump>(app));
#ifdef BMCWEB_ENABLE_REDFISH_RAW_PECI
nodes.emplace_back(std::make_unique<SendRawPECI>(app));
#endif // BMCWEB_ENABLE_REDFISH_RAW_PECI