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