Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
Patrick Venture | a29216e | 2019-06-27 11:06:36 -0700 | [diff] [blame] | 3 | AC_INIT([phosphor-ipmi-flash], [1.0], [https://github.com/openbmc/phosphor-ipmi-flash/issues]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 4 | AC_LANG([C++]) |
| 5 | AC_CONFIG_HEADERS([config.h]) |
Patrick Venture | 30993b3 | 2018-11-28 14:52:00 -0800 | [diff] [blame] | 6 | AC_CONFIG_MACRO_DIRS([m4]) |
Patrick Venture | 9dc342a | 2019-03-18 08:43:36 -0700 | [diff] [blame] | 7 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 8 | AM_SILENT_RULES([yes]) |
| 9 | |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 10 | # 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. |
| 13 | AS_IF([test "x$enable_tests" = "xno"], [enable_code_coverage=no]) |
| 14 | AS_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 Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 23 | # If building tests, enable both hardware options that are configuration controlled |
| 24 | AS_IF([test "x$enable_tests" = "xyes"], [enable_static_layout=yes]) |
| 25 | AS_IF([test "x$enable_tests" = "xyes"], [enable_tarball_ubi=yes]) |
| 26 | |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 27 | AS_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 Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 30 | AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_lpc=yes]) |
| 31 | AS_IF([test "x$enable_tests" = "xyes"], [enable_nuvoton_lpc=yes]) |
| 32 | |
Patrick Venture | de04c77 | 2019-07-19 13:37:30 -0700 | [diff] [blame] | 33 | AS_IF([test "x$enable_host_bios" = "xyes"], [enable_host_bios=yes]) |
| 34 | |
Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 35 | # If building tests, enable building all cleanup handler options. |
| 36 | AS_IF([test "x$enable_tests" = "xyes"], [enable_cleanup_delete=yes]) |
| 37 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 38 | # Checks for programs. |
| 39 | AC_PROG_CXX |
| 40 | AM_PROG_AR |
| 41 | AC_PROG_INSTALL |
| 42 | AC_PROG_MAKE_SET |
| 43 | |
| 44 | # Checks for typedefs, structures, and compiler characteristics. |
| 45 | AX_CXX_COMPILE_STDCXX_17([noext]) |
| 46 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 47 | |
| 48 | # Checks for library functions. |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 49 | LT_INIT |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 50 | |
Patrick Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 51 | # Enable building the host tool (default: yes) |
| 52 | AC_ARG_ENABLE([build-host-tool], |
| 53 | AC_HELP_STRING([--disable-build-host-tool], [Disable building the host tool]) |
Patrick Venture | 4b4ea21 | 2018-11-21 21:23:53 -0800 | [diff] [blame] | 54 | ) |
Patrick Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 55 | AM_CONDITIONAL([BUILD_HOST_TOOL], [test "x$enable_build_host_tool" != "xno"]) |
| 56 | |
Patrick Venture | 0d3b872 | 2019-06-27 07:04:06 -0700 | [diff] [blame] | 57 | # Enable building the bmc (default: yes) |
| 58 | AC_ARG_ENABLE([build-bmc-blob-handler], |
| 59 | AC_HELP_STRING([--disable-build-bmc-blob-handler], [Disable buliding the BMC BLOB handler]) |
| 60 | ) |
| 61 | AM_CONDITIONAL([BUILD_BMC_HANDLER], [test "x$enable_build_bmc_blob_handler" != "xno"]) |
| 62 | |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 63 | # Enable building host-bios support into the BMC (default: no) |
| 64 | # This is only set if build-bmc-blob-handler is not "no." |
| 65 | AC_ARG_ENABLE([host-bios], |
| 66 | AC_HELP_STRING([--enable-host-bios], [Enable supporting the host bios]) |
| 67 | ) |
| 68 | |
Patrick Venture | c37fe1e | 2019-06-27 07:49:12 -0700 | [diff] [blame] | 69 | # Build the BMC by default, so check if set to no. |
| 70 | AS_IF([test "x$enable_build_bmc_blob_handler" != "xno"], [ |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 71 | PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221]) |
| 72 | |
Patrick Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 73 | 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 Venture | 84778b8 | 2019-06-26 20:11:09 -0700 | [diff] [blame] | 81 | |
| 82 | AC_CHECK_HEADER( |
| 83 | [blobs-ipmid/blobs.hpp], |
| 84 | [], |
| 85 | [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])] |
| 86 | ) |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 87 | |
Patrick Venture | 298930a | 2019-07-03 11:44:52 -0700 | [diff] [blame] | 88 | AC_CHECK_HEADER( |
| 89 | [nlohmann/json.hpp], |
| 90 | [], |
| 91 | [AC_MSG_ERROR([Could not find nlohmann/json.hpp])] |
| 92 | ) |
| 93 | |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 94 | 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 Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 114 | |
| 115 | # Only set if build-bmc-blob-handler wasn't unset. |
Patrick Venture | de04c77 | 2019-07-19 13:37:30 -0700 | [diff] [blame] | 116 | 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 Venture | 413c0d6 | 2019-07-19 09:04:50 -0700 | [diff] [blame] | 120 | ], [ |
| 121 | AM_CONDITIONAL([HAVE_SYSTEMD], [0]) |
| 122 | AM_CONDITIONAL([ENABLE_HOST_BIOS], [0]) |
Patrick Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 123 | ]) |
| 124 | |
Patrick Venture | c37fe1e | 2019-06-27 07:49:12 -0700 | [diff] [blame] | 125 | # If not building the host-tool, we're building the BMC. |
| 126 | AS_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 Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 135 | # These packages are required for both the BMC and the host-tool. |
Patrick Venture | 8b3b325 | 2019-03-07 07:50:13 -0800 | [diff] [blame] | 136 | PKG_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 Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 144 | AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) |
| 145 | |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 146 | # Configurability |
Patrick Venture | cf10cda | 2019-05-15 10:35:10 -0700 | [diff] [blame] | 147 | |
Patrick Venture | 6f81b16 | 2019-05-20 14:02:59 -0700 | [diff] [blame] | 148 | # Enable the reboot update mechanism |
| 149 | AC_ARG_ENABLE([reboot-update], |
| 150 | AS_HELP_STRING([--enable-reboot-update], |
| 151 | [Enable use of reboot update mechanism.])) |
Patrick Venture | 298930a | 2019-07-03 11:44:52 -0700 | [diff] [blame] | 152 | AM_CONDITIONAL([ENABLE_REBOOT_UPDATE], [test "x$enable_reboot_update" = "xyes"]) |
Patrick Venture | 6f81b16 | 2019-05-20 14:02:59 -0700 | [diff] [blame] | 153 | AS_IF([test "x$enable_reboot_update" = "xyes"], [ |
| 154 | AX_APPEND_COMPILE_FLAGS([-DENABLE_REBOOT_UPDATE], [CXXFLAGS]) |
| 155 | ]) |
| 156 | |
Brandon Kim | cec91dd | 2019-09-16 17:24:40 -0700 | [diff] [blame] | 157 | # Enable the update with status file |
| 158 | AC_ARG_ENABLE([update-status], |
| 159 | AS_HELP_STRING([--enable-update-status], |
| 160 | [Enable use of update status file.])) |
| 161 | AM_CONDITIONAL([ENABLE_UPDATE_STATUS], [test "x$enable_update_status" = "xyes"]) |
| 162 | AS_IF([test "x$enable_update_status" = "xyes"], [ |
| 163 | AX_APPEND_COMPILE_FLAGS([-DENABLE_UPDATE_STATUS], [CXXFLAGS]) |
| 164 | ]) |
| 165 | |
Patrick Venture | 0d3b872 | 2019-06-27 07:04:06 -0700 | [diff] [blame] | 166 | # Enable the cleanup handle that deletes the temporary files. (default: no) |
Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 167 | AC_ARG_ENABLE([cleanup-delete], |
| 168 | AS_HELP_STRING([--enable-cleanup-delete], |
| 169 | [Enable use of the delete files cleanup mechanism.])) |
| 170 | AM_CONDITIONAL([BUILD_CLEANUP_DELETE], [test "x$enable_cleanup_delete" = "xyes"]) |
| 171 | |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 172 | # Enable static layout for firmware image staging. |
| 173 | AC_ARG_ENABLE([static-layout], |
| 174 | AS_HELP_STRING([--enable-static-layout], |
| 175 | [Enable static layout firmware update via Blobs])) |
Patrick Venture | 298930a | 2019-07-03 11:44:52 -0700 | [diff] [blame] | 176 | AM_CONDITIONAL([ENABLE_STATIC_LAYOUT], [test "x$enable_static_layout" = "xyes"]) |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 177 | AS_IF([test "x$enable_static_layout" = "xyes"], [ |
| 178 | AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS]) |
| 179 | ]) |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 180 | # Enable tarball for firmware image staging. |
| 181 | AC_ARG_ENABLE([tarball-ubi], |
| 182 | AS_HELP_STRING([--enable-tarball-ubi], |
| 183 | [Enable tarball firmware update via Blobs])) |
Patrick Venture | 80bfa67 | 2019-05-08 15:24:48 -0700 | [diff] [blame] | 184 | AS_IF([test "x$enable_tarball_ubi" = "xyes"], [ |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 185 | AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS]) |
| 186 | ]) |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 187 | |
Patrick Venture | b90cacd | 2019-07-01 11:53:57 -0700 | [diff] [blame] | 188 | AS_IF([test "x$enable_tarball_ubi" = "xyes"], [ |
| 189 | AS_IF([test "x$enable_static_layout" = "xyes"], [ |
| 190 | AS_IF([test "x$enable_tests" != "xyes"], [ |
| 191 | AC_MSG_ERROR([Invalid configuration enabling both static and ubi tarball bmc image types.]) |
| 192 | ]) |
| 193 | ]) |
| 194 | ]) |
| 195 | |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 196 | # The address used for mapping P2A or LPC into the BMC's memory-space: |
| 197 | # e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26 |
| 198 | # or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166 |
| 199 | # for PCI, this address is passed back to the host and is used directly. |
| 200 | AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.]) |
| 201 | AS_IF([test "x$MAPPED_ADDRESS" == "x"], |
Patrick Venture | ce6b874 | 2019-01-15 12:11:02 -0800 | [diff] [blame] | 202 | [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [0], [Default address to 0.])], |
| 203 | [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])] |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 204 | ) |
| 205 | |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 206 | AC_ARG_ENABLE([aspeed-lpc], |
| 207 | AS_HELP_STRING([--enable-aspeed-lpc], |
| 208 | [Enable external transfers using Aspeed LPC])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 209 | AM_CONDITIONAL(ENABLE_ASPEED_LPC, [test "x$enable_aspeed_lpc" = "xyes"]) |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 210 | AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [ |
Patrick Venture | 39b1305 | 2019-05-01 13:23:52 -0700 | [diff] [blame] | 211 | AC_CHECK_HEADER( |
| 212 | [linux/aspeed-lpc-ctrl.h], |
| 213 | [], |
| 214 | [AC_MSG_ERROR([Could not find linux/aspeed-lpc-ctrl.h])] |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 215 | ) |
Patrick Venture | 39b1305 | 2019-05-01 13:23:52 -0700 | [diff] [blame] | 216 | |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 217 | AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS]) |
Patrick Venture | 33740b9 | 2019-06-28 19:22:21 -0700 | [diff] [blame] | 218 | AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS]) |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 219 | ]) |
| 220 | AC_ARG_ENABLE([nuvoton-lpc], |
| 221 | AS_HELP_STRING([--enable-nuvoton-lpc], |
| 222 | [Enable external transfers using Nuvoton LPC SHM])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 223 | AM_CONDITIONAL(ENABLE_NUVOTON_LPC, [test "x$enable_nuvoton_lpc" = "xyes"]) |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 224 | AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [ |
| 225 | AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS]) |
Patrick Venture | 33740b9 | 2019-06-28 19:22:21 -0700 | [diff] [blame] | 226 | AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS]) |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 227 | ]) |
| 228 | |
Patrick Venture | e1f6d7d | 2019-06-28 18:08:49 -0700 | [diff] [blame] | 229 | AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [ |
| 230 | AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [ |
| 231 | AS_IF([test "x$enable_tests" != "xyes"], [ |
| 232 | AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.]) |
| 233 | ]) |
| 234 | ]) |
| 235 | ]) |
| 236 | |
Patrick Venture | a68d344 | 2019-04-30 12:51:07 -0700 | [diff] [blame] | 237 | AC_ARG_ENABLE([aspeed-p2a], |
| 238 | AS_HELP_STRING([--enable-aspeed-p2a], |
| 239 | [Enable external transfers using Aspeed PCI-to-AHB])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 240 | AM_CONDITIONAL(ENABLE_ASPEED_P2A, [test "x$enable_aspeed_p2a" = "xyes"]) |
Patrick Venture | a68d344 | 2019-04-30 12:51:07 -0700 | [diff] [blame] | 241 | AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [ |
| 242 | AC_CHECK_HEADER(linux/aspeed-p2a-ctrl.h, |
| 243 | [HAVE_UAPI_LINUX_P2A_CTRL_H=""], |
| 244 | [HAVE_UAPI_LINUX_P2A_CTRL_H="-I linux/aspeed-p2a-ctrl.h"]) |
| 245 | AS_IF([test "$HAVE_UAPI_LINUX_P2A_CTRL_H" != ""], |
| 246 | AC_MSG_WARN([Could not find linux/aspeed-p2a-ctrl.h: Attempting to download locally for building from openbmc/linux/+/dev-5.0]) |
| 247 | AC_SUBST([PCI_BMC_DL], |
| 248 | [`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`]) |
| 249 | ) |
| 250 | AX_APPEND_COMPILE_FLAGS([-DASPEED_P2A], [CXXFLAGS]) |
Patrick Venture | 89e97ba | 2019-06-28 19:07:59 -0700 | [diff] [blame] | 251 | AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS]) |
Patrick Venture | a68d344 | 2019-04-30 12:51:07 -0700 | [diff] [blame] | 252 | ]) |
| 253 | |
Medad CChien | 874bdf9 | 2019-10-31 14:38:15 +0800 | [diff] [blame] | 254 | AC_ARG_ENABLE([nuvoton-p2a-vga], |
| 255 | AS_HELP_STRING([--enable-nuvoton-p2a-vga], |
| 256 | [Enable external transfers using Nuvoton PCI-to-AHB via VGA])) |
| 257 | |
| 258 | AM_CONDITIONAL(ENABLE_NUVOTON_P2A_VGA, [test "x$enable_nuvoton_p2a_vga" = "xyes"]) |
| 259 | AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes"], [ |
| 260 | AX_APPEND_COMPILE_FLAGS([-DNUVOTON_P2A_VGA], [CXXFLAGS]) |
| 261 | AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS]) |
| 262 | ]) |
| 263 | |
| 264 | AC_ARG_ENABLE([nuvoton-p2a-mbox], |
| 265 | AS_HELP_STRING([--enable-nuvoton-p2a-mbox], |
| 266 | [Enable external transfers using Nuvoton PCI-to-AHB via MBOX])) |
| 267 | |
| 268 | AM_CONDITIONAL(ENABLE_NUVOTON_P2A_MBOX, [test "x$enable_nuvoton_p2a_mbox" = "xyes"]) |
| 269 | AS_IF([test "x$enable_nuvoton_p2a_mbox" = "xyes"], [ |
| 270 | AX_APPEND_COMPILE_FLAGS([-DNUVOTON_P2A_MBOX], [CXXFLAGS]) |
| 271 | AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS]) |
| 272 | ]) |
| 273 | |
Patrick Venture | e1f6d7d | 2019-06-28 18:08:49 -0700 | [diff] [blame] | 274 | AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [ |
| 275 | AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [ |
| 276 | AS_IF([test "x$enable_tests" != "xyes"], [ |
| 277 | AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.]) |
| 278 | ]) |
| 279 | ]) |
| 280 | ]) |
| 281 | |
Medad CChien | 874bdf9 | 2019-10-31 14:38:15 +0800 | [diff] [blame] | 282 | AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [ |
| 283 | AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes" -o "x$enable_nuvoton_p2a_mbox" = "xyes"], [ |
| 284 | AS_IF([test "x$enable_tests" != "xyes"], [ |
| 285 | AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.]) |
| 286 | ]) |
| 287 | ]) |
| 288 | ]) |
| 289 | |
| 290 | AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [ |
| 291 | AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes" -o "x$enable_nuvoton_p2a_mbox" = "xyes"], [ |
| 292 | AS_IF([test "x$enable_tests" != "xyes"], [ |
| 293 | AC_MSG_ERROR([Invalid configuration enabling both PCI and LPC of Nuvoton.]) |
| 294 | ]) |
| 295 | ]) |
| 296 | ]) |
| 297 | |
| 298 | AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes"], [ |
| 299 | AS_IF([test "x$enable_nuvoton_p2a_mbox" = "xyes"], [ |
| 300 | AS_IF([test "x$enable_tests" != "xyes"], [ |
| 301 | AC_MSG_ERROR([Invalid configuration enabling both PCI-VGA and PCI-MBOX of Nuvoton.]) |
| 302 | ]) |
| 303 | ]) |
| 304 | ]) |
| 305 | |
Benjamin Fair | 545f565 | 2019-10-09 14:18:54 -0700 | [diff] [blame] | 306 | AC_ARG_ENABLE([net-bridge], |
| 307 | AS_HELP_STRING([--enable-net-bridge], |
| 308 | [Enable external transfers using a TCP connection])) |
| 309 | AM_CONDITIONAL(ENABLE_NET_BRIDGE, [test "x$enable_net_bridge" = "xyes"]) |
| 310 | AS_IF([test "x$enable_net_bridge" = "xyes"], [ |
| 311 | AX_APPEND_COMPILE_FLAGS([-DENABLE_NET_BRIDGE], [CXXFLAGS]) |
| 312 | ]) |
| 313 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 314 | AC_ARG_VAR( |
| 315 | STATIC_HANDLER_STAGED_NAME, |
| 316 | [The file to use for staging the firmware update.] |
| 317 | ) |
| 318 | AS_IF( |
| 319 | [test "x$STATIC_HANDLER_STAGED_NAME" == "x"], |
| 320 | [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"] |
| 321 | ) |
| 322 | AC_DEFINE_UNQUOTED( |
| 323 | [STATIC_HANDLER_STAGED_NAME], |
| 324 | ["$STATIC_HANDLER_STAGED_NAME"], |
| 325 | [The file to use for staging the firmware update.] |
| 326 | ) |
Patrick Venture | 35a82f3 | 2018-11-15 13:34:22 -0800 | [diff] [blame] | 327 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 328 | AC_ARG_VAR( |
| 329 | TARBALL_STAGED_NAME, |
| 330 | [The file to use for staging the firmware update.] |
| 331 | ) |
| 332 | AS_IF( |
| 333 | [test "x$TARBALL_STAGED_NAME" == "x"], |
| 334 | [TARBALL_STAGED_NAME="/tmp/image-update.tar"] |
| 335 | ) |
| 336 | AC_DEFINE_UNQUOTED( |
| 337 | [TARBALL_STAGED_NAME], |
| 338 | ["$TARBALL_STAGED_NAME"], |
| 339 | [The file to use for staging the firmware update.] |
| 340 | ) |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 341 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 342 | AC_ARG_VAR( |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 343 | BIOS_STAGED_NAME, |
| 344 | [The file to use for staging the bios firmware update.] |
| 345 | ) |
| 346 | AS_IF( |
| 347 | [test "x$BIOS_STAGED_NAME" == "x"], |
| 348 | [BIOS_STAGED_NAME="/tmp/bios-image"] |
| 349 | ) |
| 350 | AC_DEFINE_UNQUOTED( |
| 351 | [BIOS_STAGED_NAME], |
| 352 | ["$BIOS_STAGED_NAME"], |
| 353 | [The file to use for staging the bios firmware update.] |
| 354 | ) |
| 355 | |
| 356 | AC_ARG_VAR( |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 357 | HASH_FILENAME, |
| 358 | [The file to use for the hash provided.] |
| 359 | ) |
| 360 | AS_IF( |
| 361 | [test "x$HASH_FILENAME" == "x"], |
| 362 | [HASH_FILENAME="/tmp/bmc.sig"] |
| 363 | ) |
| 364 | AC_DEFINE_UNQUOTED( |
| 365 | [HASH_FILENAME], |
| 366 | ["$HASH_FILENAME"], |
| 367 | [The file to use for the hash provided.] |
| 368 | ) |
Patrick Venture | 35a82f3 | 2018-11-15 13:34:22 -0800 | [diff] [blame] | 369 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 370 | AC_ARG_VAR( |
| 371 | PREPARATION_DBUS_SERVICE, |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 372 | [The systemd target started when the host starts to send an update.] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 373 | ) |
| 374 | AS_IF( |
| 375 | [test "x$PREPARATION_DBUS_SERVICE" == "x"], |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 376 | [PREPARATION_DBUS_SERVICE="phosphor-ipmi-flash-bmc-prepare.target"] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 377 | ) |
| 378 | AC_DEFINE_UNQUOTED( |
| 379 | [PREPARATION_DBUS_SERVICE], |
| 380 | ["$PREPARATION_DBUS_SERVICE"], |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 381 | [The systemd target started when the host starts to send an update.] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 382 | ) |
Patrick Venture | 6d7735d | 2019-06-21 10:03:19 -0700 | [diff] [blame] | 383 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 384 | AC_ARG_VAR( |
| 385 | VERIFY_STATUS_FILENAME, |
| 386 | [The file checked for the verification status.] |
| 387 | ) |
| 388 | AS_IF( |
| 389 | [test "x$VERIFY_STATUS_FILENAME" == "x"], |
| 390 | [VERIFY_STATUS_FILENAME="/tmp/bmc.verify"] |
| 391 | ) |
| 392 | AC_DEFINE_UNQUOTED( |
| 393 | [VERIFY_STATUS_FILENAME], |
| 394 | ["$VERIFY_STATUS_FILENAME"], |
| 395 | [The file checked for the verification status.] |
| 396 | ) |
Patrick Venture | 74059d6 | 2019-05-17 10:40:26 -0700 | [diff] [blame] | 397 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 398 | AC_ARG_VAR( |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 399 | BIOS_VERIFY_STATUS_FILENAME, |
| 400 | [The file checked for the verification status.] |
| 401 | ) |
| 402 | AS_IF( |
| 403 | [test "x$BIOS_VERIFY_STATUS_FILENAME" == "x"], |
| 404 | [BIOS_VERIFY_STATUS_FILENAME="/tmp/bios.verify"] |
| 405 | ) |
| 406 | AC_DEFINE_UNQUOTED( |
| 407 | [BIOS_VERIFY_STATUS_FILENAME], |
| 408 | ["$BIOS_VERIFY_STATUS_FILENAME"], |
| 409 | [The file checked for the verification status.] |
| 410 | ) |
| 411 | |
| 412 | AC_ARG_VAR( |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 413 | VERIFY_DBUS_SERVICE, |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 414 | [The systemd target started for verification.] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 415 | ) |
| 416 | AS_IF( |
| 417 | [test "x$VERIFY_DBUS_SERVICE" == "x"], |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 418 | [VERIFY_DBUS_SERVICE="phosphor-ipmi-flash-bmc-verify.target"] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 419 | ) |
| 420 | AC_DEFINE_UNQUOTED( |
| 421 | [VERIFY_DBUS_SERVICE], |
| 422 | ["$VERIFY_DBUS_SERVICE"], |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 423 | [The systemd target started for verification.] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 424 | ) |
Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 425 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 426 | AC_ARG_VAR( |
| 427 | UPDATE_DBUS_SERVICE, |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 428 | [The systemd target started for updating the BMC.] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 429 | ) |
| 430 | AS_IF( |
| 431 | [test "x$UPDATE_DBUS_SERVICE" == "x"], |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 432 | [UPDATE_DBUS_SERVICE="phosphor-ipmi-flash-bmc-update.target"] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 433 | ) |
| 434 | AC_DEFINE_UNQUOTED( |
| 435 | [UPDATE_DBUS_SERVICE], |
| 436 | ["$UPDATE_DBUS_SERVICE"], |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 437 | [The systemd target started for updating the BMC.] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 438 | ) |
Patrick Venture | 6f81b16 | 2019-05-20 14:02:59 -0700 | [diff] [blame] | 439 | |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 440 | AC_ARG_VAR( |
Brandon Kim | cec91dd | 2019-09-16 17:24:40 -0700 | [diff] [blame] | 441 | UPDATE_STATUS_FILENAME, |
| 442 | [The file checked for the update status.] |
| 443 | ) |
| 444 | AS_IF( |
| 445 | [test "x$UPDATE_STATUS_FILENAME" == "x"], |
| 446 | [UPDATE_STATUS_FILENAME="/tmp/bmc.update"] |
| 447 | ) |
| 448 | AC_DEFINE_UNQUOTED( |
| 449 | [UPDATE_STATUS_FILENAME], |
| 450 | ["$UPDATE_STATUS_FILENAME"], |
| 451 | [The file checked for the update status.] |
| 452 | ) |
| 453 | |
| 454 | AC_ARG_VAR( |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 455 | PREPARATION_BIOS_TARGET, |
| 456 | [The systemd target started when the host starts to send an update.] |
| 457 | ) |
| 458 | AS_IF( |
| 459 | [test "x$PREPARATION_BIOS_TARGET" == "x"], |
| 460 | [PREPARATION_BIOS_TARGET="phosphor-ipmi-flash-bios-prepare.target"] |
| 461 | ) |
| 462 | AC_DEFINE_UNQUOTED( |
| 463 | [PREPARATION_BIOS_TARGET], |
| 464 | ["$PREPARATION_BIOS_TARGET"], |
| 465 | [The systemd target started when the host starts to send an update.] |
| 466 | ) |
| 467 | AC_ARG_VAR( |
| 468 | VERIFY_BIOS_TARGET, |
| 469 | [The systemd target started for verifying the BIOS image.] |
| 470 | ) |
| 471 | AS_IF( |
| 472 | [test "x$VERIFY_BIOS_TARGET" == "x"], |
| 473 | [VERIFY_BIOS_TARGET="phosphor-ipmi-flash-bios-verify.target"] |
| 474 | ) |
| 475 | AC_DEFINE_UNQUOTED( |
| 476 | [VERIFY_BIOS_TARGET], |
| 477 | ["$VERIFY_BIOS_TARGET"], |
| 478 | [The systemd target started for verifying the BIOS image.] |
| 479 | ) |
| 480 | AC_ARG_VAR( |
| 481 | UPDATE_BIOS_TARGET, |
| 482 | [The systemd target started for updating the BIOS.] |
| 483 | ) |
| 484 | AS_IF( |
| 485 | [test "x$UPDATE_BIOS_TARGET" == "x"], |
| 486 | [UPDATE_BIOS_TARGET="phosphor-ipmi-flash-bios-update.target"] |
| 487 | ) |
| 488 | AC_DEFINE_UNQUOTED( |
| 489 | [UPDATE_BIOS_TARGET], |
| 490 | ["$UPDATE_BIOS_TARGET"], |
| 491 | [The systemd target started for updating the BIOS.] |
| 492 | ) |
| 493 | |
Patrick Venture | 440bc38 | 2018-12-13 19:10:55 -0800 | [diff] [blame] | 494 | AC_CHECK_HEADER(linux/ipmi.h, [HAVE_LINUX_IPMI_H=""], [HAVE_LINUX_IPMI_H="-I linux/ipmi.h"]) |
| 495 | AS_IF([test "$HAVE_LINUX_IPMI_H" != ""], |
| 496 | AC_MSG_WARN([Could not find linux/ipmi.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18]) |
| 497 | AC_SUBST([IPMI_BMC_DL], |
| 498 | [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi.h -O linux/ipmi.h`]) |
| 499 | ) |
| 500 | |
| 501 | AC_CHECK_HEADER(linux/ipmi_msgdefs.h, [HAVE_LINUX_IPMIMSGDEFS_H=""], [HAVE_LINUX_IPMIMSGDEFS_H="-I linux/ipmi_msgdefs.h"]) |
| 502 | AS_IF([test "$HAVE_LINUX_IPMIMSGDEFS_H" != ""], |
| 503 | AC_MSG_WARN([Could not find linux/ipmi_msgdefs.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18]) |
| 504 | AC_SUBST([IPMIMSG_BMC_DL], |
| 505 | [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi_msgdefs.h -O linux/ipmi_msgdefs.h`]) |
| 506 | ) |
| 507 | |
Patrick Venture | 6bc04f9 | 2019-03-06 13:49:21 -0800 | [diff] [blame] | 508 | # Make it possible for users to choose if they want test support |
| 509 | # explicitly or not at all |
| 510 | AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests], |
| 511 | [Build test cases])) |
| 512 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 513 | # Check/set gtest specific functions. |
Patrick Venture | 6bc04f9 | 2019-03-06 13:49:21 -0800 | [diff] [blame] | 514 | AS_IF([test "x$enable_tests" != "xno"], [ |
| 515 | PKG_CHECK_MODULES([GTEST], [gtest], [], [true]) |
| 516 | PKG_CHECK_MODULES([GMOCK], [gmock], [], [true]) |
| 517 | AX_PTHREAD |
| 518 | |
| 519 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 520 | AX_APPEND_COMPILE_FLAGS([$GTEST_CFLAGS], [CPPFLAGS]) |
| 521 | AC_LANG_PUSH([C++]) |
| 522 | AC_CHECK_HEADERS([gtest/gtest.h], [ |
| 523 | AS_IF([test "x$GTEST_CFLAGS" = "x"], [ |
| 524 | AS_IF([test "x$PTHREAD_CFLAGS" = "x"], [ |
| 525 | AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=0"], [GTEST_CFLAGS]) |
| 526 | ], [ |
| 527 | AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=1"], [GTEST_CFLAGS]) |
| 528 | AX_APPEND_COMPILE_FLAGS([$PTHREAD_CFLAGS], [GTEST_CFLAGS]) |
| 529 | ]) |
| 530 | ]) |
| 531 | ], [ |
| 532 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 533 | AC_MSG_ERROR([Testing enabled but could not find gtest/gtest.h]) |
| 534 | ]) |
| 535 | ]) |
| 536 | AC_LANG_POP([C++]) |
| 537 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 538 | |
| 539 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 540 | AX_APPEND_COMPILE_FLAGS([$GMOCK_CFLAGS], [CPPFLAGS]) |
| 541 | AC_LANG_PUSH([C++]) |
| 542 | AC_CHECK_HEADERS([gmock/gmock.h], [], [ |
| 543 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 544 | AC_MSG_ERROR([Testing enabled but could not find gmock/gmock.h]) |
| 545 | ]) |
| 546 | ]) |
| 547 | AC_LANG_POP([C++]) |
| 548 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 549 | |
| 550 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 551 | AX_APPEND_COMPILE_FLAGS([$GTEST_LIBS], [LDFLAGS]) |
| 552 | AC_CHECK_LIB([gtest], [main], [ |
| 553 | AS_IF([test "x$GTEST_LIBS" = "x"], [ |
| 554 | AX_APPEND_COMPILE_FLAGS([-lgtest], [GTEST_LIBS]) |
| 555 | ]) |
| 556 | ], [ |
| 557 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 558 | AC_MSG_ERROR([Testing enabled but couldn't find gtest libs]) |
| 559 | ]) |
| 560 | ]) |
| 561 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 562 | |
| 563 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 564 | AX_APPEND_COMPILE_FLAGS([$GMOCK_LIBS], [LDFLAGS]) |
| 565 | AC_CHECK_LIB([gmock], [main], [ |
| 566 | AS_IF([test "x$GMOCK_LIBS" = "x"], [ |
| 567 | AX_APPEND_COMPILE_FLAGS([-lgmock], [GMOCK_LIBS]) |
| 568 | ]) |
| 569 | ], [ |
| 570 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 571 | AC_MSG_ERROR([Testing enabled but couldn't find gmock libs]) |
| 572 | ]) |
| 573 | ]) |
| 574 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 575 | ]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 576 | |
Patrick Venture | 4679e50 | 2019-03-19 11:27:00 -0700 | [diff] [blame] | 577 | # Check for valgrind |
| 578 | AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no]) |
| 579 | m4_foreach([vgtool], [valgrind_tool_list], |
| 580 | [AX_VALGRIND_DFLT(vgtool, [off])]) |
| 581 | AX_VALGRIND_DFLT([memcheck], [on]) |
| 582 | AX_VALGRIND_CHECK |
| 583 | AM_EXTRA_RECURSIVE_TARGETS([check-valgrind]) |
| 584 | m4_foreach([vgtool], [valgrind_tool_list], |
| 585 | [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)]) |
| 586 | |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 587 | # Code coverage |
| 588 | AX_CODE_COVERAGE |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 589 | AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [ |
| 590 | AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS]) |
| 591 | ]) |
Patrick Venture | 9dc342a | 2019-03-18 08:43:36 -0700 | [diff] [blame] | 592 | m4_ifdef([_AX_CODE_COVERAGE_RULES], |
| 593 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])], |
| 594 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])]) |
| 595 | AX_ADD_AM_MACRO_STATIC([]) |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 596 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 597 | # Add --enable-oe-sdk flag to configure script |
| 598 | AC_ARG_ENABLE([oe-sdk], |
| 599 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 600 | ) |
| 601 | |
| 602 | # Check for OECORE_TARGET_SYSROOT in the environment. |
| 603 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 604 | [Path to the OE SDK SYSROOT]) |
| 605 | |
| 606 | # Configure OESDK_TESTCASE_FLAGS environment variable, which will be later |
| 607 | # used in test/Makefile.am |
| 608 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 609 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 610 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 611 | ) |
| 612 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 613 | [ |
| 614 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 615 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 616 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 617 | ] |
| 618 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 619 | ) |
| 620 | |
| 621 | # Create configured output |
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame] | 622 | AC_CONFIG_FILES([Makefile]) |
| 623 | AC_CONFIG_FILES([bmc/Makefile bmc/test/Makefile]) |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 624 | AC_CONFIG_FILES([tools/Makefile tools/test/Makefile]) |
| 625 | AC_CONFIG_FILES([cleanup/Makefile cleanup/test/Makefile]) |
Patrick Venture | fd18216 | 2019-07-01 07:39:31 -0700 | [diff] [blame] | 626 | AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-prepare.target]) |
| 627 | AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-verify.target]) |
| 628 | AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bmc-update.target]) |
Patrick Venture | 7c2a00e | 2019-07-01 17:33:03 -0700 | [diff] [blame] | 629 | AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-prepare.target]) |
| 630 | AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-verify.target]) |
| 631 | AC_CONFIG_FILES([bmc/phosphor-ipmi-flash-bios-update.target]) |
Patrick Venture | 298930a | 2019-07-03 11:44:52 -0700 | [diff] [blame] | 632 | AC_CONFIG_FILES([bmc/config-static-bmc-reboot.json]) |
| 633 | AC_CONFIG_FILES([bmc/config-static-bmc.json]) |
Brandon Kim | cec91dd | 2019-09-16 17:24:40 -0700 | [diff] [blame] | 634 | AC_CONFIG_FILES([bmc/config-static-bmc-with-update-status.json]) |
Patrick Venture | 298930a | 2019-07-03 11:44:52 -0700 | [diff] [blame] | 635 | AC_CONFIG_FILES([bmc/config-bios.json]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 636 | AC_OUTPUT |