blob: 4863dc15c3907d866c2e6a709d5b063f1e2da9b7 [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 Venture413c0d62019-07-19 09:04:50 -0700120], [
121 AM_CONDITIONAL([HAVE_SYSTEMD], [0])
122 AM_CONDITIONAL([ENABLE_HOST_BIOS], [0])
Patrick Venturec2298de2019-06-26 19:12:12 -0700123])
124
Patrick Venturec37fe1e2019-06-27 07:49:12 -0700125# If not building the host-tool, we're building the BMC.
126AS_IF([test "x$enable_build_host_tool" != "xno"], [
127 PKG_CHECK_MODULES(
128 [PCILIB],
129 [libpci],
130 [],
131 [AC_MSG_ERROR([Could not find libpci... pciutils package required])]
132 )
133])
134
Patrick Venturec2298de2019-06-26 19:12:12 -0700135# These packages are required for both the BMC and the host-tool.
Patrick Venture8b3b3252019-03-07 07:50:13 -0800136PKG_CHECK_MODULES(
137 [IPMIBLOB],
138 [ipmiblob],
139 [],
140 [AC_MSG_ERROR(
141 [Could not find ipmiblob...openbmc/ipmi-blob-tool package required])
142 ]
143)
Patrick Venturec7ca2912018-11-02 11:38:33 -0700144AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
145
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700146# Configurability
Patrick Venturecf10cda2019-05-15 10:35:10 -0700147
Rui Zhangd8515a62020-03-24 16:46:44 -0700148# Enable ppc host memory access
149AC_ARG_ENABLE([ppc],
150 AS_HELP_STRING([--enable-ppc],
151 [Enable ppc host memory access.]))
152AM_CONDITIONAL([ENABLE_PPC], [test "x$enable_ppc" = "xyes"])
153AS_IF([test "x$enable_ppc" = "xyes"], [
154 AX_APPEND_COMPILE_FLAGS([-DENABLE_PPC], [CXXFLAGS])
155])
156
Patrick Venture6f81b162019-05-20 14:02:59 -0700157# Enable the reboot update mechanism
158AC_ARG_ENABLE([reboot-update],
159 AS_HELP_STRING([--enable-reboot-update],
160 [Enable use of reboot update mechanism.]))
Patrick Venture298930a2019-07-03 11:44:52 -0700161AM_CONDITIONAL([ENABLE_REBOOT_UPDATE], [test "x$enable_reboot_update" = "xyes"])
Patrick Venture6f81b162019-05-20 14:02:59 -0700162AS_IF([test "x$enable_reboot_update" = "xyes"], [
163 AX_APPEND_COMPILE_FLAGS([-DENABLE_REBOOT_UPDATE], [CXXFLAGS])
164])
165
Brandon Kimcec91dd2019-09-16 17:24:40 -0700166# Enable the update with status file
167AC_ARG_ENABLE([update-status],
168 AS_HELP_STRING([--enable-update-status],
169 [Enable use of update status file.]))
170AM_CONDITIONAL([ENABLE_UPDATE_STATUS], [test "x$enable_update_status" = "xyes"])
171AS_IF([test "x$enable_update_status" = "xyes"], [
172 AX_APPEND_COMPILE_FLAGS([-DENABLE_UPDATE_STATUS], [CXXFLAGS])
173])
174
Patrick Venture0d3b8722019-06-27 07:04:06 -0700175# Enable the cleanup handle that deletes the temporary files. (default: no)
Patrick Venture9efef5d2019-06-19 08:45:44 -0700176AC_ARG_ENABLE([cleanup-delete],
177 AS_HELP_STRING([--enable-cleanup-delete],
178 [Enable use of the delete files cleanup mechanism.]))
179AM_CONDITIONAL([BUILD_CLEANUP_DELETE], [test "x$enable_cleanup_delete" = "xyes"])
180
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700181# Enable static layout for firmware image staging.
182AC_ARG_ENABLE([static-layout],
183 AS_HELP_STRING([--enable-static-layout],
184 [Enable static layout firmware update via Blobs]))
Patrick Venture298930a2019-07-03 11:44:52 -0700185AM_CONDITIONAL([ENABLE_STATIC_LAYOUT], [test "x$enable_static_layout" = "xyes"])
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700186AS_IF([test "x$enable_static_layout" = "xyes"], [
187 AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS])
188])
Patrick Ventured46b8112018-11-15 13:38:55 -0800189# Enable tarball for firmware image staging.
190AC_ARG_ENABLE([tarball-ubi],
191 AS_HELP_STRING([--enable-tarball-ubi],
192 [Enable tarball firmware update via Blobs]))
Patrick Venture80bfa672019-05-08 15:24:48 -0700193AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
Patrick Ventured46b8112018-11-15 13:38:55 -0800194 AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS])
195])
Patrick Venture002916a2018-11-15 10:38:07 -0800196
Patrick Ventureb90cacd2019-07-01 11:53:57 -0700197AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
198 AS_IF([test "x$enable_static_layout" = "xyes"], [
199 AS_IF([test "x$enable_tests" != "xyes"], [
200 AC_MSG_ERROR([Invalid configuration enabling both static and ubi tarball bmc image types.])
201 ])
202 ])
203])
204
Patrick Venture002916a2018-11-15 10:38:07 -0800205# The address used for mapping P2A or LPC into the BMC's memory-space:
206# e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26
207# or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166
208# for PCI, this address is passed back to the host and is used directly.
209AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.])
210AS_IF([test "x$MAPPED_ADDRESS" == "x"],
Patrick Venturece6b8742019-01-15 12:11:02 -0800211 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [0], [Default address to 0.])],
212 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])]
Patrick Venture002916a2018-11-15 10:38:07 -0800213)
214
Patrick Venturee7728422018-11-14 20:16:33 -0800215AC_ARG_ENABLE([aspeed-lpc],
216 AS_HELP_STRING([--enable-aspeed-lpc],
217 [Enable external transfers using Aspeed LPC]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700218AM_CONDITIONAL(ENABLE_ASPEED_LPC, [test "x$enable_aspeed_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800219AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
Patrick Venture39b13052019-05-01 13:23:52 -0700220 AC_CHECK_HEADER(
221 [linux/aspeed-lpc-ctrl.h],
222 [],
223 [AC_MSG_ERROR([Could not find linux/aspeed-lpc-ctrl.h])]
Patrick Venturee7728422018-11-14 20:16:33 -0800224 )
Patrick Venture39b13052019-05-01 13:23:52 -0700225
Patrick Venturee7728422018-11-14 20:16:33 -0800226 AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS])
Patrick Venture33740b92019-06-28 19:22:21 -0700227 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
Patrick Venturee7728422018-11-14 20:16:33 -0800228])
229AC_ARG_ENABLE([nuvoton-lpc],
230 AS_HELP_STRING([--enable-nuvoton-lpc],
231 [Enable external transfers using Nuvoton LPC SHM]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700232AM_CONDITIONAL(ENABLE_NUVOTON_LPC, [test "x$enable_nuvoton_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800233AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
234 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS])
Patrick Venture33740b92019-06-28 19:22:21 -0700235 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
Patrick Venturee7728422018-11-14 20:16:33 -0800236])
237
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700238AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
239 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
240 AS_IF([test "x$enable_tests" != "xyes"], [
241 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
242 ])
243 ])
244])
245
Patrick Venturea68d3442019-04-30 12:51:07 -0700246AC_ARG_ENABLE([aspeed-p2a],
247 AS_HELP_STRING([--enable-aspeed-p2a],
248 [Enable external transfers using Aspeed PCI-to-AHB]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700249AM_CONDITIONAL(ENABLE_ASPEED_P2A, [test "x$enable_aspeed_p2a" = "xyes"])
Patrick Venturea68d3442019-04-30 12:51:07 -0700250AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
251 AC_CHECK_HEADER(linux/aspeed-p2a-ctrl.h,
252 [HAVE_UAPI_LINUX_P2A_CTRL_H=""],
253 [HAVE_UAPI_LINUX_P2A_CTRL_H="-I linux/aspeed-p2a-ctrl.h"])
254 AS_IF([test "$HAVE_UAPI_LINUX_P2A_CTRL_H" != ""],
255 AC_MSG_WARN([Could not find linux/aspeed-p2a-ctrl.h: Attempting to download locally for building from openbmc/linux/+/dev-5.0])
256 AC_SUBST([PCI_BMC_DL],
257 [`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`])
258 )
259 AX_APPEND_COMPILE_FLAGS([-DASPEED_P2A], [CXXFLAGS])
Patrick Venture89e97ba2019-06-28 19:07:59 -0700260 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
Patrick Venturea68d3442019-04-30 12:51:07 -0700261])
262
Medad CChien874bdf92019-10-31 14:38:15 +0800263AC_ARG_ENABLE([nuvoton-p2a-vga],
264 AS_HELP_STRING([--enable-nuvoton-p2a-vga],
265 [Enable external transfers using Nuvoton PCI-to-AHB via VGA]))
266
267AM_CONDITIONAL(ENABLE_NUVOTON_P2A_VGA, [test "x$enable_nuvoton_p2a_vga" = "xyes"])
268AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes"], [
269 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_P2A_VGA], [CXXFLAGS])
270 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
271])
272
273AC_ARG_ENABLE([nuvoton-p2a-mbox],
274 AS_HELP_STRING([--enable-nuvoton-p2a-mbox],
275 [Enable external transfers using Nuvoton PCI-to-AHB via MBOX]))
276
277AM_CONDITIONAL(ENABLE_NUVOTON_P2A_MBOX, [test "x$enable_nuvoton_p2a_mbox" = "xyes"])
278AS_IF([test "x$enable_nuvoton_p2a_mbox" = "xyes"], [
279 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_P2A_MBOX], [CXXFLAGS])
280 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
281])
282
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700283AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
284 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
285 AS_IF([test "x$enable_tests" != "xyes"], [
286 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
287 ])
288 ])
289])
290
Medad CChien874bdf92019-10-31 14:38:15 +0800291AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
292 AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes" -o "x$enable_nuvoton_p2a_mbox" = "xyes"], [
293 AS_IF([test "x$enable_tests" != "xyes"], [
294 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
295 ])
296 ])
297])
298
299AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
300 AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes" -o "x$enable_nuvoton_p2a_mbox" = "xyes"], [
301 AS_IF([test "x$enable_tests" != "xyes"], [
302 AC_MSG_ERROR([Invalid configuration enabling both PCI and LPC of Nuvoton.])
303 ])
304 ])
305])
306
307AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes"], [
308 AS_IF([test "x$enable_nuvoton_p2a_mbox" = "xyes"], [
309 AS_IF([test "x$enable_tests" != "xyes"], [
310 AC_MSG_ERROR([Invalid configuration enabling both PCI-VGA and PCI-MBOX of Nuvoton.])
311 ])
312 ])
313])
314
Benjamin Fair545f5652019-10-09 14:18:54 -0700315AC_ARG_ENABLE([net-bridge],
316 AS_HELP_STRING([--enable-net-bridge],
317 [Enable external transfers using a TCP connection]))
318AM_CONDITIONAL(ENABLE_NET_BRIDGE, [test "x$enable_net_bridge" = "xyes"])
319AS_IF([test "x$enable_net_bridge" = "xyes"], [
320 AX_APPEND_COMPILE_FLAGS([-DENABLE_NET_BRIDGE], [CXXFLAGS])
321])
322
Patrick Venture6264e692019-06-21 10:57:45 -0700323AC_ARG_VAR(
324 STATIC_HANDLER_STAGED_NAME,
325 [The file to use for staging the firmware update.]
326)
327AS_IF(
328 [test "x$STATIC_HANDLER_STAGED_NAME" == "x"],
329 [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"]
330)
331AC_DEFINE_UNQUOTED(
332 [STATIC_HANDLER_STAGED_NAME],
333 ["$STATIC_HANDLER_STAGED_NAME"],
334 [The file to use for staging the firmware update.]
335)
Patrick Venture35a82f32018-11-15 13:34:22 -0800336
Patrick Venture6264e692019-06-21 10:57:45 -0700337AC_ARG_VAR(
338 TARBALL_STAGED_NAME,
339 [The file to use for staging the firmware update.]
340)
341AS_IF(
342 [test "x$TARBALL_STAGED_NAME" == "x"],
343 [TARBALL_STAGED_NAME="/tmp/image-update.tar"]
344)
345AC_DEFINE_UNQUOTED(
346 [TARBALL_STAGED_NAME],
347 ["$TARBALL_STAGED_NAME"],
348 [The file to use for staging the firmware update.]
349)
Patrick Ventured46b8112018-11-15 13:38:55 -0800350
Patrick Venture6264e692019-06-21 10:57:45 -0700351AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700352 BIOS_STAGED_NAME,
353 [The file to use for staging the bios firmware update.]
354)
355AS_IF(
356 [test "x$BIOS_STAGED_NAME" == "x"],
357 [BIOS_STAGED_NAME="/tmp/bios-image"]
358)
359AC_DEFINE_UNQUOTED(
360 [BIOS_STAGED_NAME],
361 ["$BIOS_STAGED_NAME"],
362 [The file to use for staging the bios firmware update.]
363)
364
365AC_ARG_VAR(
Patrick Venture6264e692019-06-21 10:57:45 -0700366 HASH_FILENAME,
367 [The file to use for the hash provided.]
368)
369AS_IF(
370 [test "x$HASH_FILENAME" == "x"],
371 [HASH_FILENAME="/tmp/bmc.sig"]
372)
373AC_DEFINE_UNQUOTED(
374 [HASH_FILENAME],
375 ["$HASH_FILENAME"],
376 [The file to use for the hash provided.]
377)
Patrick Venture35a82f32018-11-15 13:34:22 -0800378
Patrick Venture6264e692019-06-21 10:57:45 -0700379AC_ARG_VAR(
380 PREPARATION_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700381 [The systemd target started when the host starts to send an update.]
Patrick Venture6264e692019-06-21 10:57:45 -0700382)
383AS_IF(
384 [test "x$PREPARATION_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700385 [PREPARATION_DBUS_SERVICE="phosphor-ipmi-flash-bmc-prepare.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700386)
387AC_DEFINE_UNQUOTED(
388 [PREPARATION_DBUS_SERVICE],
389 ["$PREPARATION_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700390 [The systemd target started when the host starts to send an update.]
Patrick Venture6264e692019-06-21 10:57:45 -0700391)
Patrick Venture6d7735d2019-06-21 10:03:19 -0700392
Patrick Venture6264e692019-06-21 10:57:45 -0700393AC_ARG_VAR(
394 VERIFY_STATUS_FILENAME,
395 [The file checked for the verification status.]
396)
397AS_IF(
398 [test "x$VERIFY_STATUS_FILENAME" == "x"],
399 [VERIFY_STATUS_FILENAME="/tmp/bmc.verify"]
400)
401AC_DEFINE_UNQUOTED(
402 [VERIFY_STATUS_FILENAME],
403 ["$VERIFY_STATUS_FILENAME"],
404 [The file checked for the verification status.]
405)
Patrick Venture74059d62019-05-17 10:40:26 -0700406
Patrick Venture6264e692019-06-21 10:57:45 -0700407AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700408 BIOS_VERIFY_STATUS_FILENAME,
409 [The file checked for the verification status.]
410)
411AS_IF(
412 [test "x$BIOS_VERIFY_STATUS_FILENAME" == "x"],
413 [BIOS_VERIFY_STATUS_FILENAME="/tmp/bios.verify"]
414)
415AC_DEFINE_UNQUOTED(
416 [BIOS_VERIFY_STATUS_FILENAME],
417 ["$BIOS_VERIFY_STATUS_FILENAME"],
418 [The file checked for the verification status.]
419)
420
421AC_ARG_VAR(
Patrick Venture6264e692019-06-21 10:57:45 -0700422 VERIFY_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700423 [The systemd target started for verification.]
Patrick Venture6264e692019-06-21 10:57:45 -0700424)
425AS_IF(
426 [test "x$VERIFY_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700427 [VERIFY_DBUS_SERVICE="phosphor-ipmi-flash-bmc-verify.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700428)
429AC_DEFINE_UNQUOTED(
430 [VERIFY_DBUS_SERVICE],
431 ["$VERIFY_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700432 [The systemd target started for verification.]
Patrick Venture6264e692019-06-21 10:57:45 -0700433)
Patrick Venture3ecb3502019-05-17 11:03:51 -0700434
Patrick Venture6264e692019-06-21 10:57:45 -0700435AC_ARG_VAR(
436 UPDATE_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700437 [The systemd target started for updating the BMC.]
Patrick Venture6264e692019-06-21 10:57:45 -0700438)
439AS_IF(
440 [test "x$UPDATE_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700441 [UPDATE_DBUS_SERVICE="phosphor-ipmi-flash-bmc-update.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700442)
443AC_DEFINE_UNQUOTED(
444 [UPDATE_DBUS_SERVICE],
445 ["$UPDATE_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700446 [The systemd target started for updating the BMC.]
Patrick Venture6264e692019-06-21 10:57:45 -0700447)
Patrick Venture6f81b162019-05-20 14:02:59 -0700448
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700449AC_ARG_VAR(
Brandon Kimcec91dd2019-09-16 17:24:40 -0700450 UPDATE_STATUS_FILENAME,
451 [The file checked for the update status.]
452)
453AS_IF(
454 [test "x$UPDATE_STATUS_FILENAME" == "x"],
455 [UPDATE_STATUS_FILENAME="/tmp/bmc.update"]
456)
457AC_DEFINE_UNQUOTED(
458 [UPDATE_STATUS_FILENAME],
459 ["$UPDATE_STATUS_FILENAME"],
460 [The file checked for the update status.]
461)
462
463AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700464 PREPARATION_BIOS_TARGET,
465 [The systemd target started when the host starts to send an update.]
466)
467AS_IF(
468 [test "x$PREPARATION_BIOS_TARGET" == "x"],
469 [PREPARATION_BIOS_TARGET="phosphor-ipmi-flash-bios-prepare.target"]
470)
471AC_DEFINE_UNQUOTED(
472 [PREPARATION_BIOS_TARGET],
473 ["$PREPARATION_BIOS_TARGET"],
474 [The systemd target started when the host starts to send an update.]
475)
476AC_ARG_VAR(
477 VERIFY_BIOS_TARGET,
478 [The systemd target started for verifying the BIOS image.]
479)
480AS_IF(
481 [test "x$VERIFY_BIOS_TARGET" == "x"],
482 [VERIFY_BIOS_TARGET="phosphor-ipmi-flash-bios-verify.target"]
483)
484AC_DEFINE_UNQUOTED(
485 [VERIFY_BIOS_TARGET],
486 ["$VERIFY_BIOS_TARGET"],
487 [The systemd target started for verifying the BIOS image.]
488)
489AC_ARG_VAR(
490 UPDATE_BIOS_TARGET,
491 [The systemd target started for updating the BIOS.]
492)
493AS_IF(
494 [test "x$UPDATE_BIOS_TARGET" == "x"],
495 [UPDATE_BIOS_TARGET="phosphor-ipmi-flash-bios-update.target"]
496)
497AC_DEFINE_UNQUOTED(
498 [UPDATE_BIOS_TARGET],
499 ["$UPDATE_BIOS_TARGET"],
500 [The systemd target started for updating the BIOS.]
501)
502
Patrick Venture440bc382018-12-13 19:10:55 -0800503AC_CHECK_HEADER(linux/ipmi.h, [HAVE_LINUX_IPMI_H=""], [HAVE_LINUX_IPMI_H="-I linux/ipmi.h"])
504AS_IF([test "$HAVE_LINUX_IPMI_H" != ""],
505 AC_MSG_WARN([Could not find linux/ipmi.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
506 AC_SUBST([IPMI_BMC_DL],
507 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi.h -O linux/ipmi.h`])
508)
509
510AC_CHECK_HEADER(linux/ipmi_msgdefs.h, [HAVE_LINUX_IPMIMSGDEFS_H=""], [HAVE_LINUX_IPMIMSGDEFS_H="-I linux/ipmi_msgdefs.h"])
511AS_IF([test "$HAVE_LINUX_IPMIMSGDEFS_H" != ""],
512 AC_MSG_WARN([Could not find linux/ipmi_msgdefs.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
513 AC_SUBST([IPMIMSG_BMC_DL],
514 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi_msgdefs.h -O linux/ipmi_msgdefs.h`])
515)
516
Patrick Venture6bc04f92019-03-06 13:49:21 -0800517# Make it possible for users to choose if they want test support
518# explicitly or not at all
519AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests],
520 [Build test cases]))
521
Patrick Venturec7ca2912018-11-02 11:38:33 -0700522# Check/set gtest specific functions.
Patrick Venture6bc04f92019-03-06 13:49:21 -0800523AS_IF([test "x$enable_tests" != "xno"], [
524 PKG_CHECK_MODULES([GTEST], [gtest], [], [true])
525 PKG_CHECK_MODULES([GMOCK], [gmock], [], [true])
526 AX_PTHREAD
527
528 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
529 AX_APPEND_COMPILE_FLAGS([$GTEST_CFLAGS], [CPPFLAGS])
530 AC_LANG_PUSH([C++])
531 AC_CHECK_HEADERS([gtest/gtest.h], [
532 AS_IF([test "x$GTEST_CFLAGS" = "x"], [
533 AS_IF([test "x$PTHREAD_CFLAGS" = "x"], [
534 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=0"], [GTEST_CFLAGS])
535 ], [
536 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=1"], [GTEST_CFLAGS])
537 AX_APPEND_COMPILE_FLAGS([$PTHREAD_CFLAGS], [GTEST_CFLAGS])
538 ])
539 ])
540 ], [
541 AS_IF([test "x$enable_tests" = "xyes"], [
542 AC_MSG_ERROR([Testing enabled but could not find gtest/gtest.h])
543 ])
544 ])
545 AC_LANG_POP([C++])
546 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
547
548 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
549 AX_APPEND_COMPILE_FLAGS([$GMOCK_CFLAGS], [CPPFLAGS])
550 AC_LANG_PUSH([C++])
551 AC_CHECK_HEADERS([gmock/gmock.h], [], [
552 AS_IF([test "x$enable_tests" = "xyes"], [
553 AC_MSG_ERROR([Testing enabled but could not find gmock/gmock.h])
554 ])
555 ])
556 AC_LANG_POP([C++])
557 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
558
559 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
560 AX_APPEND_COMPILE_FLAGS([$GTEST_LIBS], [LDFLAGS])
561 AC_CHECK_LIB([gtest], [main], [
562 AS_IF([test "x$GTEST_LIBS" = "x"], [
563 AX_APPEND_COMPILE_FLAGS([-lgtest], [GTEST_LIBS])
564 ])
565 ], [
566 AS_IF([test "x$enable_tests" = "xyes"], [
567 AC_MSG_ERROR([Testing enabled but couldn't find gtest libs])
568 ])
569 ])
570 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
571
572 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
573 AX_APPEND_COMPILE_FLAGS([$GMOCK_LIBS], [LDFLAGS])
574 AC_CHECK_LIB([gmock], [main], [
575 AS_IF([test "x$GMOCK_LIBS" = "x"], [
576 AX_APPEND_COMPILE_FLAGS([-lgmock], [GMOCK_LIBS])
577 ])
578 ], [
579 AS_IF([test "x$enable_tests" = "xyes"], [
580 AC_MSG_ERROR([Testing enabled but couldn't find gmock libs])
581 ])
582 ])
583 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
584])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700585
Patrick Venture4679e502019-03-19 11:27:00 -0700586# Check for valgrind
587AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no])
588m4_foreach([vgtool], [valgrind_tool_list],
589 [AX_VALGRIND_DFLT(vgtool, [off])])
590AX_VALGRIND_DFLT([memcheck], [on])
591AX_VALGRIND_CHECK
592AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
593m4_foreach([vgtool], [valgrind_tool_list],
594 [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)])
595
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800596# Code coverage
597AX_CODE_COVERAGE
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800598AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [
599 AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS])
600])
Patrick Venture9dc342a2019-03-18 08:43:36 -0700601m4_ifdef([_AX_CODE_COVERAGE_RULES],
602 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])],
603 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])])
604AX_ADD_AM_MACRO_STATIC([])
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800605
Patrick Venturec7ca2912018-11-02 11:38:33 -0700606# Add --enable-oe-sdk flag to configure script
607AC_ARG_ENABLE([oe-sdk],
608 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
609)
610
611# Check for OECORE_TARGET_SYSROOT in the environment.
612AC_ARG_VAR(OECORE_TARGET_SYSROOT,
613 [Path to the OE SDK SYSROOT])
614
615# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
616# used in test/Makefile.am
617AS_IF([test "x$enable_oe_sdk" == "xyes"],
618 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
619 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
620 )
621 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
622 [
623 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
624 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
625 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
626 ]
627 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
628)
629
630# Create configured output
Patrick Venturef0c71df2019-06-26 19:39:36 -0700631AC_CONFIG_FILES([Makefile])
632AC_CONFIG_FILES([bmc/Makefile bmc/test/Makefile])
Patrick Venture6264e692019-06-21 10:57:45 -0700633AC_CONFIG_FILES([tools/Makefile tools/test/Makefile])
634AC_CONFIG_FILES([cleanup/Makefile cleanup/test/Makefile])
Patrick Venturefd182162019-07-01 07:39:31 -0700635AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-prepare.target])
636AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-verify.target])
637AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-update.target])
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700638AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-prepare.target])
639AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-verify.target])
640AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-update.target])
Patrick Venture298930a2019-07-03 11:44:52 -0700641AC_CONFIG_FILES([bmc/config-static-bmc-reboot.json])
642AC_CONFIG_FILES([bmc/config-static-bmc.json])
Brandon Kimcec91dd2019-09-16 17:24:40 -0700643AC_CONFIG_FILES([bmc/config-static-bmc-with-update-status.json])
Patrick Venture298930a2019-07-03 11:44:52 -0700644AC_CONFIG_FILES([bmc/config-bios.json])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700645AC_OUTPUT