blob: 196522e481b494ee2fc198c78e04276fa712f121 [file] [log] [blame]
#include <sdbusplus/bus.hpp>
#include "config.h"
#include "bmc_state_manager.hpp"
int main(int argc, char**)
{
auto bus = sdbusplus::bus::new_default();
// For now, we only have one instance of the BMC
// 0 is for the current instance
auto objPathInst = std::string(BMC_OBJPATH) + '0';
// Add sdbusplus ObjectManager.
sdbusplus::server::manager::manager objManager(bus, objPathInst.c_str());
phosphor::state::manager::BMC manager(bus,
objPathInst.c_str());
bus.request_name(BMC_BUSNAME);
while(true)
{
bus.process_discard();
bus.wait();
}
exit(EXIT_SUCCESS);
}