From acc71ffb4b61b3354bbb2fa14981e4e6a46946e6 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Tue, 5 Feb 2013 11:45:28 +0100 Subject: TRX: Introduce osmobts-trx, a layer 1 implementation for OpenBTS tranceivers The code is quite complete, TCH and PDCH channels are not yet tested. --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 641a6c9a..752e85b3 100644 --- a/configure.ac +++ b/configure.ac @@ -37,6 +37,14 @@ AC_ARG_ENABLE(sysmocom-bts, AC_MSG_RESULT([$enable_sysmocom_bts]) AM_CONDITIONAL(ENABLE_SYSMOBTS, test "x$enable_sysmocom_bts" = "xyes") +AC_MSG_CHECKING([whether to enable trx hardware support]) +AC_ARG_ENABLE(trx, + AC_HELP_STRING([--enable-trx], + [enable code for trx hardware [default=no]]), + [enable_trx="yes"],[enable_trx="no"]) +AC_MSG_RESULT([$enable_trx]) +AM_CONDITIONAL(ENABLE_TRX, test "x$enable_trx" = "xyes") + # We share gsm_data.h with OpenBSC and need to be pointed to the source # directory of OpenBSC for now. AC_ARG_WITH([openbsc], @@ -70,6 +78,7 @@ AC_OUTPUT( src/Makefile src/common/Makefile src/osmo-bts-sysmo/Makefile + src/osmo-bts-trx/Makefile include/Makefile include/osmo-bts/Makefile tests/Makefile -- cgit v1.2.3