blob: 40df159a77b05de1bf4832bef943a3386449559f [file] [log] [blame]
Patrick Venturec7ca2912018-11-02 11:38:33 -07001# Initialization
2AC_PREREQ([2.69])
Patrick Venturea29216e2019-06-27 11:06:36 -07003AC_INIT([phosphor-ipmi-flash], [1.0], [https://github.com/openbmc/phosphor-ipmi-flash/issues])
Patrick Venturec7ca2912018-11-02 11:38:33 -07004AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
Patrick Venture30993b32018-11-28 14:52:00 -08006AC_CONFIG_MACRO_DIRS([m4])
Patrick Venture9dc342a2019-03-18 08:43:36 -07007AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz])
Patrick Venturec7ca2912018-11-02 11:38:33 -07008AM_SILENT_RULES([yes])
9
Patrick Venture2f3b4b62019-03-08 13:22:40 -080010# Make sure the default CFLAGS of `-O2 -g` don't override CODE_COVERAGE_CFLAGS
11# It is important that this comes before AC_PROG_C{C,XX}, as we are attempting
12# to stop them from populating default CFLAGS and CXXFLAGS.
13AS_IF([test "x$enable_tests" = "xno"], [enable_code_coverage=no])
14AS_IF([test "x$enable_code_coverage" != "xno"], [
15 AS_IF([test "x${CXXFLAGS+set}" != "xset"], [
16 AC_SUBST(CXXFLAGS, [""])
17 ])
18 AS_IF([test "x${CFLAGS+set}" != "xset"], [
19 AC_SUBST(CFLAGS, [""])
20 ])
21])
22
Patrick Ventureac570a12019-05-08 08:53:16 -070023# If building tests, enable both hardware options that are configuration controlled
24AS_IF([test "x$enable_tests" = "xyes"], [enable_static_layout=yes])
25AS_IF([test "x$enable_tests" = "xyes"], [enable_tarball_ubi=yes])
26
Patrick Ventureac570a12019-05-08 08:53:16 -070027AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_p2a=yes])
28
29# You can only build main.o with one of the lpc implementations, however, specify both.
Patrick Ventureac570a12019-05-08 08:53:16 -070030AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_lpc=yes])
31AS_IF([test "x$enable_tests" = "xyes"], [enable_nuvoton_lpc=yes])
32
Patrick Venturede04c772019-07-19 13:37:30 -070033AS_IF([test "x$enable_host_bios" = "xyes"], [enable_host_bios=yes])
34
Patrick Venture9efef5d2019-06-19 08:45:44 -070035# If building tests, enable building all cleanup handler options.
36AS_IF([test "x$enable_tests" = "xyes"], [enable_cleanup_delete=yes])
37
Patrick Venturec7ca2912018-11-02 11:38:33 -070038# Checks for programs.
39AC_PROG_CXX
40AM_PROG_AR
41AC_PROG_INSTALL
42AC_PROG_MAKE_SET
43
44# Checks for typedefs, structures, and compiler characteristics.
45AX_CXX_COMPILE_STDCXX_17([noext])
46AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
47
48# Checks for library functions.
Patrick Venturefd182162019-07-01 07:39:31 -070049LT_INIT
Patrick Venturec7ca2912018-11-02 11:38:33 -070050
Patrick Venturec2298de2019-06-26 19:12:12 -070051# Enable building the host tool (default: yes)
52AC_ARG_ENABLE([build-host-tool],
53 AC_HELP_STRING([--disable-build-host-tool], [Disable building the host tool])
Patrick Venture4b4ea212018-11-21 21:23:53 -080054)
Patrick Venturec2298de2019-06-26 19:12:12 -070055AM_CONDITIONAL([BUILD_HOST_TOOL], [test "x$enable_build_host_tool" != "xno"])
56
Patrick Venture0d3b8722019-06-27 07:04:06 -070057# Enable building the bmc (default: yes)
58AC_ARG_ENABLE([build-bmc-blob-handler],
59 AC_HELP_STRING([--disable-build-bmc-blob-handler], [Disable buliding the BMC BLOB handler])
60)
61AM_CONDITIONAL([BUILD_BMC_HANDLER], [test "x$enable_build_bmc_blob_handler" != "xno"])
62
Patrick Venture7c2a00e2019-07-01 17:33:03 -070063# Enable building host-bios support into the BMC (default: no)
64# This is only set if build-bmc-blob-handler is not "no."
65AC_ARG_ENABLE([host-bios],
66 AC_HELP_STRING([--enable-host-bios], [Enable supporting the host bios])
67)
68
Patrick Venturec37fe1e2019-06-27 07:49:12 -070069# Build the BMC by default, so check if set to no.
70AS_IF([test "x$enable_build_bmc_blob_handler" != "xno"], [
Patrick Venturefd182162019-07-01 07:39:31 -070071 PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221])
72
Patrick Venturec2298de2019-06-26 19:12:12 -070073 PKG_CHECK_MODULES(
74 [SDBUSPLUS],
75 [sdbusplus],
76 [AC_DEFINE(HAVE_SDBUSPLUS, [1], [Found openbmc/sdbusplus package])],
77 [AC_MSG_ERROR([The openbmc/sdbusplus package is required])]
78 )
79
80 PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
Patrick Venture84778b82019-06-26 20:11:09 -070081
82 AC_CHECK_HEADER(
83 [blobs-ipmid/blobs.hpp],
84 [],
85 [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])]
86 )
Patrick Venturefd182162019-07-01 07:39:31 -070087
Patrick Venture298930a2019-07-03 11:44:52 -070088 AC_CHECK_HEADER(
89 [nlohmann/json.hpp],
90 [],
91 [AC_MSG_ERROR([Could not find nlohmann/json.hpp])]
92 )
93
Patrick Venturefd182162019-07-01 07:39:31 -070094 PKG_PROG_PKG_CONFIG
95 AC_ARG_WITH([systemdsystemunitdir],
96 [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files])],
97 [],
98 [with_systemdsystemunitdir=auto]
99 )
100 AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitdir" = "xauto"],
101 [def_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
102 AS_IF([test "x$def_systemdsystemunitdir" = "x"],
103 [AS_IF([test "x$with_systemdsystemunitdir" = "xyes"],
104 [AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])]
105 )
106 with_systemdsystemunitdir=no],
107 [with_systemdsystemunitdir="$def_systemdsystemunitdir"]
108 )]
109 )
110 AS_IF([test "x$with_systemdsystemunitdir" != "xno"],
111 [AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])]
112 )
113 AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemdsystemunitdir" != "xno"])
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700114
115 # Only set if build-bmc-blob-handler wasn't unset.
Patrick Venturede04c772019-07-19 13:37:30 -0700116 AM_CONDITIONAL([ENABLE_HOST_BIOS], [test "x$enable_host_bios" = "xyes"])
117 AS_IF([test "x$enable_host_bios" = "xyes"], [
118 AX_APPEND_COMPILE_FLAGS([-DENABLE_HOST_BIOS], [CXXFLAGS])
119 ])
Patrick Venturec2298de2019-06-26 19:12:12 -0700120])
121
Patrick Venturec37fe1e2019-06-27 07:49:12 -0700122# If not building the host-tool, we're building the BMC.
123AS_IF([test "x$enable_build_host_tool" != "xno"], [
124 PKG_CHECK_MODULES(
125 [PCILIB],
126 [libpci],
127 [],
128 [AC_MSG_ERROR([Could not find libpci... pciutils package required])]
129 )
130])
131
Patrick Venturec2298de2019-06-26 19:12:12 -0700132# These packages are required for both the BMC and the host-tool.
Patrick Venture8b3b3252019-03-07 07:50:13 -0800133PKG_CHECK_MODULES(
134 [IPMIBLOB],
135 [ipmiblob],
136 [],
137 [AC_MSG_ERROR(
138 [Could not find ipmiblob...openbmc/ipmi-blob-tool package required])
139 ]
140)
Patrick Venturec7ca2912018-11-02 11:38:33 -0700141AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
142
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700143# Configurability
Patrick Venturecf10cda2019-05-15 10:35:10 -0700144
Patrick Venture6f81b162019-05-20 14:02:59 -0700145# Enable the reboot update mechanism
146AC_ARG_ENABLE([reboot-update],
147 AS_HELP_STRING([--enable-reboot-update],
148 [Enable use of reboot update mechanism.]))
Patrick Venture298930a2019-07-03 11:44:52 -0700149AM_CONDITIONAL([ENABLE_REBOOT_UPDATE], [test "x$enable_reboot_update" = "xyes"])
Patrick Venture6f81b162019-05-20 14:02:59 -0700150AS_IF([test "x$enable_reboot_update" = "xyes"], [
151 AX_APPEND_COMPILE_FLAGS([-DENABLE_REBOOT_UPDATE], [CXXFLAGS])
152])
153
Patrick Venture0d3b8722019-06-27 07:04:06 -0700154# Enable the cleanup handle that deletes the temporary files. (default: no)
Patrick Venture9efef5d2019-06-19 08:45:44 -0700155AC_ARG_ENABLE([cleanup-delete],
156 AS_HELP_STRING([--enable-cleanup-delete],
157 [Enable use of the delete files cleanup mechanism.]))
158AM_CONDITIONAL([BUILD_CLEANUP_DELETE], [test "x$enable_cleanup_delete" = "xyes"])
159
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700160# Enable static layout for firmware image staging.
161AC_ARG_ENABLE([static-layout],
162 AS_HELP_STRING([--enable-static-layout],
163 [Enable static layout firmware update via Blobs]))
Patrick Venture298930a2019-07-03 11:44:52 -0700164AM_CONDITIONAL([ENABLE_STATIC_LAYOUT], [test "x$enable_static_layout" = "xyes"])
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700165AS_IF([test "x$enable_static_layout" = "xyes"], [
166 AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS])
167])
Patrick Ventured46b8112018-11-15 13:38:55 -0800168# Enable tarball for firmware image staging.
169AC_ARG_ENABLE([tarball-ubi],
170 AS_HELP_STRING([--enable-tarball-ubi],
171 [Enable tarball firmware update via Blobs]))
Patrick Venture80bfa672019-05-08 15:24:48 -0700172AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
Patrick Ventured46b8112018-11-15 13:38:55 -0800173 AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS])
174])
Patrick Venture002916a2018-11-15 10:38:07 -0800175
Patrick Ventureb90cacd2019-07-01 11:53:57 -0700176AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
177 AS_IF([test "x$enable_static_layout" = "xyes"], [
178 AS_IF([test "x$enable_tests" != "xyes"], [
179 AC_MSG_ERROR([Invalid configuration enabling both static and ubi tarball bmc image types.])
180 ])
181 ])
182])
183
Patrick Venture002916a2018-11-15 10:38:07 -0800184# The address used for mapping P2A or LPC into the BMC's memory-space:
185# e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26
186# or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166
187# for PCI, this address is passed back to the host and is used directly.
188AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.])
189AS_IF([test "x$MAPPED_ADDRESS" == "x"],
Patrick Venturece6b8742019-01-15 12:11:02 -0800190 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [0], [Default address to 0.])],
191 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])]
Patrick Venture002916a2018-11-15 10:38:07 -0800192)
193
Patrick Venturee7728422018-11-14 20:16:33 -0800194AC_ARG_ENABLE([aspeed-lpc],
195 AS_HELP_STRING([--enable-aspeed-lpc],
196 [Enable external transfers using Aspeed LPC]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700197AM_CONDITIONAL(ENABLE_ASPEED_LPC, [test "x$enable_aspeed_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800198AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
Patrick Venture39b13052019-05-01 13:23:52 -0700199 AC_CHECK_HEADER(
200 [linux/aspeed-lpc-ctrl.h],
201 [],
202 [AC_MSG_ERROR([Could not find linux/aspeed-lpc-ctrl.h])]
Patrick Venturee7728422018-11-14 20:16:33 -0800203 )
Patrick Venture39b13052019-05-01 13:23:52 -0700204
Patrick Venturee7728422018-11-14 20:16:33 -0800205 AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS])
Patrick Venture33740b92019-06-28 19:22:21 -0700206 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
Patrick Venturee7728422018-11-14 20:16:33 -0800207])
208AC_ARG_ENABLE([nuvoton-lpc],
209 AS_HELP_STRING([--enable-nuvoton-lpc],
210 [Enable external transfers using Nuvoton LPC SHM]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700211AM_CONDITIONAL(ENABLE_NUVOTON_LPC, [test "x$enable_nuvoton_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800212AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
213 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS])
Patrick Venture33740b92019-06-28 19:22:21 -0700214 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
Patrick Venturee7728422018-11-14 20:16:33 -0800215])
216
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700217AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
218 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
219 AS_IF([test "x$enable_tests" != "xyes"], [
220 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
221 ])
222 ])
223])
224
Patrick Venturea68d3442019-04-30 12:51:07 -0700225AC_ARG_ENABLE([aspeed-p2a],
226 AS_HELP_STRING([--enable-aspeed-p2a],
227 [Enable external transfers using Aspeed PCI-to-AHB]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700228AM_CONDITIONAL(ENABLE_ASPEED_P2A, [test "x$enable_aspeed_p2a" = "xyes"])
Patrick Venturea68d3442019-04-30 12:51:07 -0700229AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
230 AC_CHECK_HEADER(linux/aspeed-p2a-ctrl.h,
231 [HAVE_UAPI_LINUX_P2A_CTRL_H=""],
232 [HAVE_UAPI_LINUX_P2A_CTRL_H="-I linux/aspeed-p2a-ctrl.h"])
233 AS_IF([test "$HAVE_UAPI_LINUX_P2A_CTRL_H" != ""],
234 AC_MSG_WARN([Could not find linux/aspeed-p2a-ctrl.h: Attempting to download locally for building from openbmc/linux/+/dev-5.0])
235 AC_SUBST([PCI_BMC_DL],
236 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-5.0/include/uapi/linux/aspeed-p2a-ctrl.h -O linux/aspeed-p2a-ctrl.h`])
237 )
238 AX_APPEND_COMPILE_FLAGS([-DASPEED_P2A], [CXXFLAGS])
Patrick Venture89e97ba2019-06-28 19:07:59 -0700239 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
Patrick Venturea68d3442019-04-30 12:51:07 -0700240])
241
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700242AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
243 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
244 AS_IF([test "x$enable_tests" != "xyes"], [
245 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
246 ])
247 ])
248])
249
Patrick Venture6264e692019-06-21 10:57:45 -0700250AC_ARG_VAR(
251 STATIC_HANDLER_STAGED_NAME,
252 [The file to use for staging the firmware update.]
253)
254AS_IF(
255 [test "x$STATIC_HANDLER_STAGED_NAME" == "x"],
256 [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"]
257)
258AC_DEFINE_UNQUOTED(
259 [STATIC_HANDLER_STAGED_NAME],
260 ["$STATIC_HANDLER_STAGED_NAME"],
261 [The file to use for staging the firmware update.]
262)
Patrick Venture35a82f32018-11-15 13:34:22 -0800263
Patrick Venture6264e692019-06-21 10:57:45 -0700264AC_ARG_VAR(
265 TARBALL_STAGED_NAME,
266 [The file to use for staging the firmware update.]
267)
268AS_IF(
269 [test "x$TARBALL_STAGED_NAME" == "x"],
270 [TARBALL_STAGED_NAME="/tmp/image-update.tar"]
271)
272AC_DEFINE_UNQUOTED(
273 [TARBALL_STAGED_NAME],
274 ["$TARBALL_STAGED_NAME"],
275 [The file to use for staging the firmware update.]
276)
Patrick Ventured46b8112018-11-15 13:38:55 -0800277
Patrick Venture6264e692019-06-21 10:57:45 -0700278AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700279 BIOS_STAGED_NAME,
280 [The file to use for staging the bios firmware update.]
281)
282AS_IF(
283 [test "x$BIOS_STAGED_NAME" == "x"],
284 [BIOS_STAGED_NAME="/tmp/bios-image"]
285)
286AC_DEFINE_UNQUOTED(
287 [BIOS_STAGED_NAME],
288 ["$BIOS_STAGED_NAME"],
289 [The file to use for staging the bios firmware update.]
290)
291
292AC_ARG_VAR(
Patrick Venture6264e692019-06-21 10:57:45 -0700293 HASH_FILENAME,
294 [The file to use for the hash provided.]
295)
296AS_IF(
297 [test "x$HASH_FILENAME" == "x"],
298 [HASH_FILENAME="/tmp/bmc.sig"]
299)
300AC_DEFINE_UNQUOTED(
301 [HASH_FILENAME],
302 ["$HASH_FILENAME"],
303 [The file to use for the hash provided.]
304)
Patrick Venture35a82f32018-11-15 13:34:22 -0800305
Patrick Venture6264e692019-06-21 10:57:45 -0700306AC_ARG_VAR(
307 PREPARATION_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700308 [The systemd target started when the host starts to send an update.]
Patrick Venture6264e692019-06-21 10:57:45 -0700309)
310AS_IF(
311 [test "x$PREPARATION_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700312 [PREPARATION_DBUS_SERVICE="phosphor-ipmi-flash-bmc-prepare.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700313)
314AC_DEFINE_UNQUOTED(
315 [PREPARATION_DBUS_SERVICE],
316 ["$PREPARATION_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700317 [The systemd target started when the host starts to send an update.]
Patrick Venture6264e692019-06-21 10:57:45 -0700318)
Patrick Venture6d7735d2019-06-21 10:03:19 -0700319
Patrick Venture6264e692019-06-21 10:57:45 -0700320AC_ARG_VAR(
321 VERIFY_STATUS_FILENAME,
322 [The file checked for the verification status.]
323)
324AS_IF(
325 [test "x$VERIFY_STATUS_FILENAME" == "x"],
326 [VERIFY_STATUS_FILENAME="/tmp/bmc.verify"]
327)
328AC_DEFINE_UNQUOTED(
329 [VERIFY_STATUS_FILENAME],
330 ["$VERIFY_STATUS_FILENAME"],
331 [The file checked for the verification status.]
332)
Patrick Venture74059d62019-05-17 10:40:26 -0700333
Patrick Venture6264e692019-06-21 10:57:45 -0700334AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700335 BIOS_VERIFY_STATUS_FILENAME,
336 [The file checked for the verification status.]
337)
338AS_IF(
339 [test "x$BIOS_VERIFY_STATUS_FILENAME" == "x"],
340 [BIOS_VERIFY_STATUS_FILENAME="/tmp/bios.verify"]
341)
342AC_DEFINE_UNQUOTED(
343 [BIOS_VERIFY_STATUS_FILENAME],
344 ["$BIOS_VERIFY_STATUS_FILENAME"],
345 [The file checked for the verification status.]
346)
347
348AC_ARG_VAR(
Patrick Venture6264e692019-06-21 10:57:45 -0700349 VERIFY_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700350 [The systemd target started for verification.]
Patrick Venture6264e692019-06-21 10:57:45 -0700351)
352AS_IF(
353 [test "x$VERIFY_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700354 [VERIFY_DBUS_SERVICE="phosphor-ipmi-flash-bmc-verify.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700355)
356AC_DEFINE_UNQUOTED(
357 [VERIFY_DBUS_SERVICE],
358 ["$VERIFY_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700359 [The systemd target started for verification.]
Patrick Venture6264e692019-06-21 10:57:45 -0700360)
Patrick Venture3ecb3502019-05-17 11:03:51 -0700361
Patrick Venture6264e692019-06-21 10:57:45 -0700362AC_ARG_VAR(
363 UPDATE_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700364 [The systemd target started for updating the BMC.]
Patrick Venture6264e692019-06-21 10:57:45 -0700365)
366AS_IF(
367 [test "x$UPDATE_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700368 [UPDATE_DBUS_SERVICE="phosphor-ipmi-flash-bmc-update.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700369)
370AC_DEFINE_UNQUOTED(
371 [UPDATE_DBUS_SERVICE],
372 ["$UPDATE_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700373 [The systemd target started for updating the BMC.]
Patrick Venture6264e692019-06-21 10:57:45 -0700374)
Patrick Venture6f81b162019-05-20 14:02:59 -0700375
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700376AC_ARG_VAR(
377 PREPARATION_BIOS_TARGET,
378 [The systemd target started when the host starts to send an update.]
379)
380AS_IF(
381 [test "x$PREPARATION_BIOS_TARGET" == "x"],
382 [PREPARATION_BIOS_TARGET="phosphor-ipmi-flash-bios-prepare.target"]
383)
384AC_DEFINE_UNQUOTED(
385 [PREPARATION_BIOS_TARGET],
386 ["$PREPARATION_BIOS_TARGET"],
387 [The systemd target started when the host starts to send an update.]
388)
389AC_ARG_VAR(
390 VERIFY_BIOS_TARGET,
391 [The systemd target started for verifying the BIOS image.]
392)
393AS_IF(
394 [test "x$VERIFY_BIOS_TARGET" == "x"],
395 [VERIFY_BIOS_TARGET="phosphor-ipmi-flash-bios-verify.target"]
396)
397AC_DEFINE_UNQUOTED(
398 [VERIFY_BIOS_TARGET],
399 ["$VERIFY_BIOS_TARGET"],
400 [The systemd target started for verifying the BIOS image.]
401)
402AC_ARG_VAR(
403 UPDATE_BIOS_TARGET,
404 [The systemd target started for updating the BIOS.]
405)
406AS_IF(
407 [test "x$UPDATE_BIOS_TARGET" == "x"],
408 [UPDATE_BIOS_TARGET="phosphor-ipmi-flash-bios-update.target"]
409)
410AC_DEFINE_UNQUOTED(
411 [UPDATE_BIOS_TARGET],
412 ["$UPDATE_BIOS_TARGET"],
413 [The systemd target started for updating the BIOS.]
414)
415
Patrick Venture440bc382018-12-13 19:10:55 -0800416AC_CHECK_HEADER(linux/ipmi.h, [HAVE_LINUX_IPMI_H=""], [HAVE_LINUX_IPMI_H="-I linux/ipmi.h"])
417AS_IF([test "$HAVE_LINUX_IPMI_H" != ""],
418 AC_MSG_WARN([Could not find linux/ipmi.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
419 AC_SUBST([IPMI_BMC_DL],
420 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi.h -O linux/ipmi.h`])
421)
422
423AC_CHECK_HEADER(linux/ipmi_msgdefs.h, [HAVE_LINUX_IPMIMSGDEFS_H=""], [HAVE_LINUX_IPMIMSGDEFS_H="-I linux/ipmi_msgdefs.h"])
424AS_IF([test "$HAVE_LINUX_IPMIMSGDEFS_H" != ""],
425 AC_MSG_WARN([Could not find linux/ipmi_msgdefs.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
426 AC_SUBST([IPMIMSG_BMC_DL],
427 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi_msgdefs.h -O linux/ipmi_msgdefs.h`])
428)
429
Patrick Venture6bc04f92019-03-06 13:49:21 -0800430# Make it possible for users to choose if they want test support
431# explicitly or not at all
432AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests],
433 [Build test cases]))
434
Patrick Venturec7ca2912018-11-02 11:38:33 -0700435# Check/set gtest specific functions.
Patrick Venture6bc04f92019-03-06 13:49:21 -0800436AS_IF([test "x$enable_tests" != "xno"], [
437 PKG_CHECK_MODULES([GTEST], [gtest], [], [true])
438 PKG_CHECK_MODULES([GMOCK], [gmock], [], [true])
439 AX_PTHREAD
440
441 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
442 AX_APPEND_COMPILE_FLAGS([$GTEST_CFLAGS], [CPPFLAGS])
443 AC_LANG_PUSH([C++])
444 AC_CHECK_HEADERS([gtest/gtest.h], [
445 AS_IF([test "x$GTEST_CFLAGS" = "x"], [
446 AS_IF([test "x$PTHREAD_CFLAGS" = "x"], [
447 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=0"], [GTEST_CFLAGS])
448 ], [
449 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=1"], [GTEST_CFLAGS])
450 AX_APPEND_COMPILE_FLAGS([$PTHREAD_CFLAGS], [GTEST_CFLAGS])
451 ])
452 ])
453 ], [
454 AS_IF([test "x$enable_tests" = "xyes"], [
455 AC_MSG_ERROR([Testing enabled but could not find gtest/gtest.h])
456 ])
457 ])
458 AC_LANG_POP([C++])
459 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
460
461 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
462 AX_APPEND_COMPILE_FLAGS([$GMOCK_CFLAGS], [CPPFLAGS])
463 AC_LANG_PUSH([C++])
464 AC_CHECK_HEADERS([gmock/gmock.h], [], [
465 AS_IF([test "x$enable_tests" = "xyes"], [
466 AC_MSG_ERROR([Testing enabled but could not find gmock/gmock.h])
467 ])
468 ])
469 AC_LANG_POP([C++])
470 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
471
472 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
473 AX_APPEND_COMPILE_FLAGS([$GTEST_LIBS], [LDFLAGS])
474 AC_CHECK_LIB([gtest], [main], [
475 AS_IF([test "x$GTEST_LIBS" = "x"], [
476 AX_APPEND_COMPILE_FLAGS([-lgtest], [GTEST_LIBS])
477 ])
478 ], [
479 AS_IF([test "x$enable_tests" = "xyes"], [
480 AC_MSG_ERROR([Testing enabled but couldn't find gtest libs])
481 ])
482 ])
483 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
484
485 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
486 AX_APPEND_COMPILE_FLAGS([$GMOCK_LIBS], [LDFLAGS])
487 AC_CHECK_LIB([gmock], [main], [
488 AS_IF([test "x$GMOCK_LIBS" = "x"], [
489 AX_APPEND_COMPILE_FLAGS([-lgmock], [GMOCK_LIBS])
490 ])
491 ], [
492 AS_IF([test "x$enable_tests" = "xyes"], [
493 AC_MSG_ERROR([Testing enabled but couldn't find gmock libs])
494 ])
495 ])
496 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
497])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700498
Patrick Venture4679e502019-03-19 11:27:00 -0700499# Check for valgrind
500AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no])
501m4_foreach([vgtool], [valgrind_tool_list],
502 [AX_VALGRIND_DFLT(vgtool, [off])])
503AX_VALGRIND_DFLT([memcheck], [on])
504AX_VALGRIND_CHECK
505AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
506m4_foreach([vgtool], [valgrind_tool_list],
507 [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)])
508
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800509# Code coverage
510AX_CODE_COVERAGE
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800511AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [
512 AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS])
513])
Patrick Venture9dc342a2019-03-18 08:43:36 -0700514m4_ifdef([_AX_CODE_COVERAGE_RULES],
515 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])],
516 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])])
517AX_ADD_AM_MACRO_STATIC([])
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800518
Patrick Venturec7ca2912018-11-02 11:38:33 -0700519# Add --enable-oe-sdk flag to configure script
520AC_ARG_ENABLE([oe-sdk],
521 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
522)
523
524# Check for OECORE_TARGET_SYSROOT in the environment.
525AC_ARG_VAR(OECORE_TARGET_SYSROOT,
526 [Path to the OE SDK SYSROOT])
527
528# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
529# used in test/Makefile.am
530AS_IF([test "x$enable_oe_sdk" == "xyes"],
531 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
532 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
533 )
534 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
535 [
536 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
537 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
538 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
539 ]
540 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
541)
542
543# Create configured output
Patrick Venturef0c71df2019-06-26 19:39:36 -0700544AC_CONFIG_FILES([Makefile])
545AC_CONFIG_FILES([bmc/Makefile bmc/test/Makefile])
Patrick Venture6264e692019-06-21 10:57:45 -0700546AC_CONFIG_FILES([tools/Makefile tools/test/Makefile])
547AC_CONFIG_FILES([cleanup/Makefile cleanup/test/Makefile])
Patrick Venturefd182162019-07-01 07:39:31 -0700548AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-prepare.target])
549AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-verify.target])
550AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-update.target])
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700551AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-prepare.target])
552AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-verify.target])
553AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-update.target])
Patrick Venture298930a2019-07-03 11:44:52 -0700554AC_CONFIG_FILES([bmc/config-static-bmc-reboot.json])
555AC_CONFIG_FILES([bmc/config-static-bmc.json])
556AC_CONFIG_FILES([bmc/config-bios.json])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700557AC_OUTPUT