summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorPatrick Venture <venture@google.com>2018-11-28 14:59:23 -0800
committerPatrick Venture <venture@google.com>2018-11-28 14:59:23 -0800
commit8aee057be55156d1daec286839029bc1ee511dff (patch)
treeb83607ffb3d9ce6fd2ebe3bf4a44d60bb72e79fb /main.cpp
parent540b64dbafbc20fc31d13169af5d7b18b61a4e20 (diff)
downloadphosphor-ipmi-blobs-8aee057be55156d1daec286839029bc1ee511dff.tar.gz
phosphor-ipmi-blobs-8aee057be55156d1daec286839029bc1ee511dff.zip
main: receive blob handler path from configure
Add blob handler path to configure_ac and use this path for searching. Change-Id: Ie0e33e93822bc6e95ace2fed5abe66f42dae5ca5 Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/main.cpp b/main.cpp
index ee236d9..7bbae28 100644
--- a/main.cpp
+++ b/main.cpp
@@ -60,9 +60,6 @@ static ipmi_ret_t handleBlobCommand(ipmi_cmd_t cmd, const uint8_t* reqBuf,
replyCmdBuf, dataLen);
}
-/* TODO: this should come from the makefile or recipe... */
-constexpr auto expectedHandlerPath = "/usr/lib/blob-ipmid";
-
void setupBlobGlobalHandler() __attribute__((constructor));
void setupBlobGlobalHandler()
@@ -78,7 +75,7 @@ void setupBlobGlobalHandler()
/* Install handlers. */
try
{
- loadLibraries(getBlobManager(), expectedHandlerPath);
+ loadLibraries(getBlobManager(), BLOB_LIB_PATH);
}
catch (const std::exception& e)
{
OpenPOWER on IntegriCloud