blob: 5cbdfc6306d88cbf937127690ef80acff00a63f4 [file] [log] [blame]
Matthew Barth3cff7ed2016-07-27 14:50:51 -05001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-host-ipmid], [1.0], [https://github.com/openbmc/phosphor-host-ipmid/issues])
4AC_CONFIG_HEADERS([config.h])
5AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
Matthew Barth00b1e5b2016-09-09 12:15:46 -05006AM_SILENT_RULES([yes])
Patrick Venture98c7bfc2018-10-29 18:43:35 -07007AC_LANG([C++])
Matthew Barth3cff7ed2016-07-27 14:50:51 -05008
9# Checks for programs.
10AC_PROG_CXX
Matthew Barth3cff7ed2016-07-27 14:50:51 -050011AC_PROG_CC
Patrick Williams686df742016-09-02 17:52:59 -050012AM_PROG_AR
Matthew Barth3cff7ed2016-07-27 14:50:51 -050013AC_PROG_INSTALL
14AC_PROG_MAKE_SET
15
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053016# softoff dir specific ones
17AC_ARG_ENABLE([softoff],
18 AS_HELP_STRING([--enable-softoff], [Builds soft power off])
19)
20AS_IF([test "x$enable_softoff" != "xno"],
21 [AC_PROG_MKDIR_P]
22 [AC_CHECK_PROG([DIRNAME], dirname, dirname)]
23)
24
Matthew Barth3cff7ed2016-07-27 14:50:51 -050025# Checks for libraries.
Matthew Barth80f714b2016-11-09 15:04:48 -060026AC_CHECK_LIB([mapper], [mapper_get_service], ,[AC_MSG_ERROR([Could not find libmapper...openbmc/phosphor-objmgr package required])])
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053027PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221], [], [AC_MSG_ERROR(["systemd required and not found"])])
Adriana Kobylak2efb3e72017-02-06 21:43:59 -060028PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],, [AC_MSG_ERROR([Could not find phosphor-logging...openbmc/phosphor-logging package required])])
Vishwanatha Subbannab12b0c02017-03-07 18:17:19 +053029PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces],, [AC_MSG_ERROR([Could not find phosphor-dbus-interfaces...openbmc/phosphor-dbus-interfaces package required])])
Deepak Kodihalli18aa0442017-07-21 07:07:09 -050030PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus],,\
31 AC_MSG_ERROR(["Requires sdbusplus package."]))
Matthew Barth3cff7ed2016-07-27 14:50:51 -050032
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053033AS_IF([test "x$enable_softoff" != "xno"],
William A. Kennington III4f67cc32018-10-18 15:24:49 -070034 PKG_CHECK_MODULES([SDEVENTPLUS], [sdeventplus],,\
35 AC_MSG_ERROR(["Requires sdeventplus package."]))
36
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053037 # Check for sdbus++ tool
38 [AC_PATH_PROG([SDBUSPLUSPLUS], [sdbus++])]
39 AS_IF([test "x$SDBUSPLUSPLUS" == "x"],
40 AC_MSG_ERROR([Cannot find sdbus++]))
41)
Matthew Barth3cff7ed2016-07-27 14:50:51 -050042
43# Checks for typedefs, structures, and compiler characteristics.
William A. Kennington III687a4362018-10-18 15:22:43 -070044AX_CXX_COMPILE_STDCXX([17], [noext], [mandatory])
Matthew Barth00b1e5b2016-09-09 12:15:46 -050045AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CFLAGS])
46AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
Matthew Barth3cff7ed2016-07-27 14:50:51 -050047
48# Checks for library functions.
Patrick Williams686df742016-09-02 17:52:59 -050049LT_INIT([dlopen disable-static shared])
Matthew Barth3cff7ed2016-07-27 14:50:51 -050050LT_LIB_DLLOAD
Matthew Barth3cff7ed2016-07-27 14:50:51 -050051
Matthew Barth00b1e5b2016-09-09 12:15:46 -050052# Check/set gtest specific functions.
Peter Hanson4a589852017-06-07 17:40:45 -070053PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
54PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])])
Matthew Barth00b1e5b2016-09-09 12:15:46 -050055
56AC_ARG_ENABLE([oe-sdk],
57 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
58)
59AC_ARG_VAR(OECORE_TARGET_SYSROOT,
60 [Path to the OE SDK SYSROOT])
61AS_IF([test "x$enable_oe_sdk" == "xyes"],
62 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
63 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
64 )
65 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
66 [
67 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
68 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
69 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
70 ]
71 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
72)
73
Emily Shafferc07e72c2018-06-18 10:37:31 -070074# Add code coverage tool
75AX_CODE_COVERAGE
76
Tom Joseph51cb8ee2017-02-21 16:22:33 +053077AC_ARG_VAR(WHITELIST_CONF, [Paths to IPMI whitelisted commands conf files. (default = ${srcdir}/host-ipmid-whitelist.conf)])
78if test -z "$WHITELIST_CONF"; then
79 WHITELIST_CONF=${srcdir}/host-ipmid-whitelist.conf
80fi
81
Ratan Gupta28c2e732017-03-04 08:53:52 +053082AS_IF([test "x$SENSOR_YAML_GEN" == "x"], [SENSOR_YAML_GEN="sensor-example.yaml"])
83SENSORGEN="$PYTHON ${srcdir}/scripts/sensor_gen.py -i $SENSOR_YAML_GEN"
84AC_SUBST(SENSORGEN)
85
Tom Josephd5899e72017-05-05 11:20:34 +053086AS_IF([test "x$INVSENSOR_YAML_GEN" == "x"], [INVSENSOR_YAML_GEN="inventory-sensor-example.yaml"])
87INVSENSORGEN="$PYTHON ${srcdir}/scripts/inventory-sensor.py -i $INVSENSOR_YAML_GEN"
88AC_SUBST(INVSENSORGEN)
89
Marri Devender Rao81b8d552017-07-07 12:20:23 -050090AS_IF([test "x$FRU_YAML_GEN" == "x"], [FRU_YAML_GEN="fru-read-example.yaml"])
Marri Devender Raoa62bacc2017-06-04 23:40:16 -050091FRUGEN="$PYTHON $srcdir/scripts/fru_gen.py -i $FRU_YAML_GEN"
92AC_SUBST(FRUGEN)
93
Patrick Venturec01edf22017-12-22 14:03:06 -080094AS_IF([test "x$CHANNEL_YAML_GEN" == "x"], [CHANNEL_YAML_GEN="channel-example.yaml"])
95CHANNELGEN="$PYTHON ${srcdir}/scripts/channel_gen.py -i $CHANNEL_YAML_GEN"
96AC_SUBST(CHANNELGEN)
97
Tom Joseph6edc8a02017-06-30 18:52:56 +053098AC_DEFINE(CALLOUT_FWD_ASSOCIATION, "callout", [The name of the callout's forward association.])
99AC_DEFINE(BOARD_SENSOR, "/xyz/openbmc_project/inventory/system/chassis/motherboard", [The inventory path to the motherboard fault sensor.])
100AC_DEFINE(SYSTEM_SENSOR, "/xyz/openbmc_project/inventory/system", [The inventory path to the system event sensor.])
101
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +0530102# Soft Power off related.
103AS_IF([test "x$enable_softoff" != "xno"],
104 # Dbus service name
105 [AC_ARG_VAR(SOFTOFF_BUSNAME, [The Dbus busname to own])]
106 AS_IF([test "x$SOFTOFF_BUSNAME" == "x"],
107 [SOFTOFF_BUSNAME="xyz.openbmc_project.Ipmi.Internal.SoftPowerOff"])
108 [AC_DEFINE_UNQUOTED([SOFTOFF_BUSNAME], ["$SOFTOFF_BUSNAME"], [The Dbus busname to own])]
109
110 # Service dbus root
111 [AC_ARG_VAR(SOFTOFF_OBJPATH, [The SoftPowerOff Dbus root])]
112 AS_IF([test "x$SOFTOFF_OBJPATH" == "x"],
Vishwanatha Subbannab891a572017-03-31 11:34:48 +0530113 [SOFTOFF_OBJPATH="/xyz/openbmc_project/ipmi/internal/soft_power_off"])
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +0530114 [AC_DEFINE_UNQUOTED([SOFTOFF_OBJPATH], ["$SOFTOFF_OBJPATH"], [The SoftPowerOff Dbus root])]
Vishwanatha Subbannad27e71e2017-02-01 18:02:38 +0530115
116 # Timeouts in SECONDS for SoftPowerOff protocol
Andrew Geissler6fcdc212018-01-26 11:53:46 -0800117 [AC_ARG_VAR(IPMI_SMS_ATN_ACK_TIMEOUT_SECS, \
118 [Initial timeout for host to ack and query SMS_ATN from BMC])]
119 [AC_DEFINE_UNQUOTED([IPMI_SMS_ATN_ACK_TIMEOUT_SECS], [30], \
120 [Timeout for host to ack and query SMS_ATN from BMC])]
Vishwanatha Subbanna31272b82017-02-01 18:53:14 +0530121
Andrew Geissler48ce0722017-08-16 19:51:51 -0500122 [AC_ARG_VAR(IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS, [Wait time for host to shutdown])]
123 [AC_DEFINE_UNQUOTED([IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS], [45*60], [Wait time for host to shutdown])]
Andrew Geisslera6e3a302017-05-31 19:34:00 -0500124
125 # Indicates an in-band power off or reboot request from the host
126 # This file is used to ensure the soft off service does not run for host
127 # initiated shutdown or reboot requests
128 [AC_ARG_VAR(HOST_INBAND_REQUEST_DIR, [Directory used to indicate the host has initiated a shutdown or reboot])]
129 AS_IF([test "x$HOST_INBAND_REQUEST_DIR" == "x"],
130 [HOST_INBAND_REQUEST_DIR="/run/openbmc/"])
131 [AC_DEFINE_UNQUOTED([HOST_INBAND_REQUEST_DIR], ["$HOST_INBAND_REQUEST_DIR"], [Directory to store host initiated shutdown file])]
132
133 [AC_ARG_VAR(HOST_INBAND_REQUEST_FILE, [File which indicates the host has initiated a shutdown or reboot])]
134 AS_IF([test "x$HOST_INBAND_REQUEST_FILE" == "x"],
135 [HOST_INBAND_REQUEST_FILE="host@%u-request"])
136 [AC_DEFINE_UNQUOTED([HOST_INBAND_REQUEST_FILE], ["$HOST_INBAND_REQUEST_FILE"], [File to create if host has initiated shutdown or reboot])]
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +0530137)
138
Andrew Geissler62817fa92017-03-20 14:20:49 -0500139# Control Host Interfaces
140# Dbus service name
141AC_ARG_VAR(CONTROL_HOST_BUSNAME, [The Control Host Dbus busname to own])
142AS_IF([test "x$CONTROL_HOST_BUSNAME" == "x"],
143 [CONTROL_HOST_BUSNAME="xyz.openbmc_project.Control.Host"])
144AC_DEFINE_UNQUOTED([CONTROL_HOST_BUSNAME], ["$CONTROL_HOST_BUSNAME"], [The Control Host Dbus busname to own])
145
Vishwanatha Subbanna3eb117a2017-07-12 16:13:49 +0530146# Host object name in the D-Bus
147AC_ARG_VAR(HOST_NAME, [The Host name in the object path])
148AS_IF([test "x$HOST_NAME" == "x"],
149 [HOST_NAME="host"])
150AC_DEFINE_UNQUOTED([HOST_NAME], ["$HOST_NAME"], [The Host name in the object path])
151
152# Service dbus object manager
153AC_ARG_VAR(CONTROL_HOST_OBJ_MGR, [The Control Host D-Bus Object Manager])
154AS_IF([test "x$CONTROL_HOST_OBJ_MGR" == "x"],
155 [CONTROL_HOST_OBJ_MGR="/xyz/openbmc_project/control"])
156AC_DEFINE_UNQUOTED([CONTROL_HOST_OBJ_MGR], ["$CONTROL_HOST_OBJ_MGR"], [The Control Host D-Bus Object Manager])
Andrew Geissler62817fa92017-03-20 14:20:49 -0500157
Marri Devender Rao66c5fda2018-01-18 10:48:37 -0600158# Power reading sensor configuration file
159AC_ARG_VAR(POWER_READING_SENSOR, [Power reading sensor configuration file])
160AS_IF([test "x$POWER_READING_SENSOR" == "x"],[POWER_READING_SENSOR="/usr/share/ipmi-providers/power_reading.json"])
161AC_DEFINE_UNQUOTED([POWER_READING_SENSOR], ["$POWER_READING_SENSOR"], [Power reading sensor configuration file])
162
Matthew Barth00b1e5b2016-09-09 12:15:46 -0500163# Create configured output
Vernon Mauery1181af72018-10-08 12:05:00 -0700164AC_CONFIG_FILES([Makefile test/Makefile softoff/Makefile])
Matthew Barth3cff7ed2016-07-27 14:50:51 -0500165AC_OUTPUT