Change DBus path from storage to inventory
bmcweb only searches for drive in the inventory. If we want bmcweb to
find and treat the eMMC like drive, we must change this path.
It would be possible to change how bmcweb find drives. See below:
https://github.com/openbmc/bmcweb/blob/master/redfish-core/lib/storage.hpp#L561
Tested: Ran on real machine and verified the path was correct.
Change-Id: Ibba9d144f4d141fdad358da1e43db6d871d6d013
Signed-off-by: John Edward Broadbent <jebr@google.com>
diff --git a/src/main.cpp b/src/main.cpp
index 1f50a25..0207079 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -55,8 +55,8 @@
}
/* DBus path location to place the object. */
- std::string path = "/xyz/openbmc_project/storage/" + deviceName;
-
+ std::string path =
+ "/xyz/openbmc_project/inventory/storage/" + deviceName;
/*
* Create a new bus and affix an object manager for the subtree path we
* intend to place objects at.