blob: 8618a4b8618e5fe7cdfedbfc9d5037945421c0f1 [file] [log] [blame]
Patrick Williamsf06056b2021-04-16 13:38:55 -05001#pragma once
Patrick Williams0bb89f82021-04-16 16:30:04 -05002#include <cstddef>
3
4#define PROCESS_META 1
Patrick Williamsf06056b2021-04-16 13:38:55 -05005
6// @TODO(stwcx): These values are currently configured in autoconf but never
7// modified by anyone, nor could I see why they ever would be.
8// Once autoconf is removed, they should be switched over to
9// a constant in a header file.
10
Patrick Williams0bb89f82021-04-16 16:30:04 -050011#define BMC_VERSION_FILE "/etc/os-release"
Patrick Williamsf06056b2021-04-16 13:38:55 -050012#define BUSNAME_LOGGING "xyz.openbmc_project.Logging"
Patrick Williams0bb89f82021-04-16 16:30:04 -050013#define CALLOUT_FWD_ASSOCIATION "callout"
14#define CALLOUT_REV_ASSOCIATION "fault"
15#define INVENTORY_ROOT "/xyz/openbmc_project/inventory"
16#define OBJ_ENTRY "/xyz/openbmc_project/logging/entry"
Patrick Williamsf06056b2021-04-16 13:38:55 -050017#define OBJ_INTERNAL "/xyz/openbmc_project/logging/internal/manager"
Patrick Williams0bb89f82021-04-16 16:30:04 -050018#define OBJ_LOGGING "/xyz/openbmc_project/logging"
19#define SYSTEMD_BUSNAME "org.freedesktop.systemd1"
20#define SYSTEMD_INTERFACE "org.freedesktop.systemd1.Manager"
21#define SYSTEMD_PATH "/org/freedesktop/systemd1"
22
23#define ERRLOG_PERSIST_PATH "/var/lib/phosphor-logging/errors" // TODO: need /tmp/errors in some cases?
24
25static constexpr size_t ERROR_CAP = @error_cap@;
26static constexpr size_t ERROR_INFO_CAP = @error_info_cap@;
27
28static constexpr auto FIRST_CEREAL_CLASS_VERSION_WITH_FWLEVEL = "2";
29static constexpr auto FIRST_CEREAL_CLASS_VERSION_WITH_UPDATE_TS = "3";
30static constexpr size_t CLASS_VERSION = 3;
Patrick Williamsf06056b2021-04-16 13:38:55 -050031
32// vim: ft=cpp