Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([phosphor-ipmi-flash], [0.1], [https://github.com/openbmc/phosphor-ipmi-flash/issues]) |
| 4 | AC_LANG([C++]) |
| 5 | AC_CONFIG_HEADERS([config.h]) |
| 6 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz]) |
| 7 | AM_SILENT_RULES([yes]) |
| 8 | |
| 9 | # Checks for programs. |
| 10 | AC_PROG_CXX |
| 11 | AM_PROG_AR |
| 12 | AC_PROG_INSTALL |
| 13 | AC_PROG_MAKE_SET |
| 14 | |
| 15 | # Checks for typedefs, structures, and compiler characteristics. |
| 16 | AX_CXX_COMPILE_STDCXX_17([noext]) |
| 17 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 18 | |
| 19 | # Checks for library functions. |
| 20 | LT_INIT # Required for systemd linking |
| 21 | |
| 22 | # Checks for libraries. |
| 23 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],, [AC_MSG_ERROR([Could not find phosphor-logging...openbmc/phosphor-logging package required])]) |
| 24 | AC_CHECK_HEADER([blobs-ipmid], [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])]) |
| 25 | AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) |
| 26 | |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 27 | # Configurability |
| 28 | # Enable static layout for firmware image staging. |
| 29 | AC_ARG_ENABLE([static-layout], |
| 30 | AS_HELP_STRING([--enable-static-layout], |
| 31 | [Enable static layout firmware update via Blobs])) |
| 32 | AS_IF([test "x$enable_static_layout" = "xyes"], [ |
| 33 | AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS]) |
| 34 | ]) |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 35 | # Enable tarball for firmware image staging. |
| 36 | AC_ARG_ENABLE([tarball-ubi], |
| 37 | AS_HELP_STRING([--enable-tarball-ubi], |
| 38 | [Enable tarball firmware update via Blobs])) |
| 39 | AS_IF([test "x$enanble_tarball_ubi" = "xyes"], [ |
| 40 | AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS]) |
| 41 | ]) |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 42 | |
Patrick Venture | 4306f68 | 2018-11-06 11:06:02 -0800 | [diff] [blame] | 43 | # Enable P2A, and or LPC (block-transfer is always enabled). |
Patrick Venture | 192d60f | 2018-11-06 11:11:59 -0800 | [diff] [blame] | 44 | AC_ARG_ENABLE([pci-bridge], |
| 45 | AS_HELP_STRING([--enable-pci-bridge], |
| 46 | [Enable pci-bridge transport mechanism])) |
| 47 | AS_IF([test "x$enable_pci_bridge" = "xyes"], [ |
| 48 | AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS]) |
| 49 | ]) |
| 50 | AC_ARG_ENABLE([lpc-bridge], |
| 51 | AS_HELP_STRING([--enable-lpc-bridge], |
| 52 | [Enable lpc-bridge transport mechanism])) |
| 53 | AS_IF([test "x$enable_lpc_bridge" = "xyes"], [ |
| 54 | AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS]) |
| 55 | ]) |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 56 | |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 57 | # The address used for mapping P2A or LPC into the BMC's memory-space: |
| 58 | # e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26 |
| 59 | # or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166 |
| 60 | # for PCI, this address is passed back to the host and is used directly. |
| 61 | AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.]) |
| 62 | AS_IF([test "x$MAPPED_ADDRESS" == "x"], |
| 63 | [AC_DEFINE(MAPPED_ADDRESS, [0], [Default address to 0.])], |
| 64 | [AC_DEFINE(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])] |
| 65 | ) |
| 66 | |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 67 | AC_ARG_ENABLE([aspeed-lpc], |
| 68 | AS_HELP_STRING([--enable-aspeed-lpc], |
| 69 | [Enable external transfers using Aspeed LPC])) |
| 70 | AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [ |
| 71 | AC_CHECK_HEADER(linux/aspeed-lpc-ctrl.h, |
| 72 | [HAVE_UAPI_LINUX_LPC_CTRL_H=""], |
| 73 | [HAVE_UAPI_LINUX_LPC_CTRL_H="-I linux/aspeed-lpc-ctrl.h"]) |
| 74 | AS_IF([test "$HAVE_UAPI_LINUX_LPC_CTRL_H" != ""], |
| 75 | AC_MSG_WARN([Could not find linux/aspeed-lpc-ctrl.h: Attempting to download locally for building from openbmc/linux/+dev-4.18]) |
| 76 | AC_SUBST([BT_BMC_DL], |
| 77 | [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/aspeed-lpc-ctrl.h -O linux/aspeed-lpc-ctrl.h`]) |
| 78 | ) |
| 79 | AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS]) |
| 80 | ]) |
| 81 | AC_ARG_ENABLE([nuvoton-lpc], |
| 82 | AS_HELP_STRING([--enable-nuvoton-lpc], |
| 83 | [Enable external transfers using Nuvoton LPC SHM])) |
| 84 | AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [ |
| 85 | AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS]) |
| 86 | ]) |
| 87 | |
Patrick Venture | 35a82f3 | 2018-11-15 13:34:22 -0800 | [diff] [blame] | 88 | AC_ARG_VAR(STATIC_HANDLER_STAGED_NAME, [The file to use for staging the firmware update.]) |
| 89 | AS_IF([test "x$STATIC_HANDLER_STAGED_NAME" == "x"], [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"]) |
| 90 | AC_DEFINE_UNQUOTED([STATIC_HANDLER_STAGED_NAME], ["$STATIC_HANDLER_STAGED_NAME"], [The file to use for staging the firmware update.]) |
| 91 | |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 92 | AC_ARG_VAR(TARBALL_STAGED_NAME, [The file to use for staging the firmware update.]) |
| 93 | AS_IF([test "x$TARBALL_STAGED_NAME" == "x"], [TARBALL_STAGED_NAME="/tmp/image-update.tar"]) |
| 94 | AC_DEFINE_UNQUOTED([TARBALL_STAGED_NAME], ["$TARBALL_STAGED_NAME"], [The file to use for staging the firmware update.]) |
| 95 | |
Patrick Venture | 35a82f3 | 2018-11-15 13:34:22 -0800 | [diff] [blame] | 96 | AC_ARG_VAR(HASH_FILENAME, [The file to use for the hash provided.]) |
| 97 | AS_IF([test "x$HASH_FILENAME" == "x"], [HASH_FILENAME="/tmp/bmc.sig"]) |
| 98 | AC_DEFINE_UNQUOTED([HASH_FILENAME], ["$HASH_FILENAME"], [The file to use for the hash provided.]) |
| 99 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 100 | # Check/set gtest specific functions. |
| 101 | PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])]) |
| 102 | PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])]) |
| 103 | PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])]) |
| 104 | |
| 105 | # Add --enable-oe-sdk flag to configure script |
| 106 | AC_ARG_ENABLE([oe-sdk], |
| 107 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 108 | ) |
| 109 | |
| 110 | # Check for OECORE_TARGET_SYSROOT in the environment. |
| 111 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 112 | [Path to the OE SDK SYSROOT]) |
| 113 | |
| 114 | # Configure OESDK_TESTCASE_FLAGS environment variable, which will be later |
| 115 | # used in test/Makefile.am |
| 116 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 117 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 118 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 119 | ) |
| 120 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 121 | [ |
| 122 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 123 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 124 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 125 | ] |
| 126 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 127 | ) |
| 128 | |
| 129 | # Create configured output |
Patrick Venture | 21be45a | 2018-11-06 12:08:52 -0800 | [diff] [blame] | 130 | AC_CONFIG_FILES([Makefile test/Makefile]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 131 | AC_OUTPUT |