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