mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-bts.git
synced 2025-10-23 00:12:11 +00:00
Change-Id: Iaf391691093d84824d99059d1fad98293872db5d Depends: libosmo-abis.git Change-Id I079dc3999de508301dd37ed03e399356a58d3cab Depends: libosmo-netif.git Change-Id I13d6e88158f6d9ce017986283183ee9c2cc68cae
29 lines
700 B
Bash
Executable File
29 lines
700 B
Bash
Executable File
#!/bin/sh
|
|
# jenkins build helper script for osmo-bts-octphy + osmo-bts-trx
|
|
|
|
# shellcheck source=contrib/jenkins_common.sh
|
|
. $(dirname "$0")/jenkins_common.sh
|
|
|
|
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
export LD_LIBRARY_PATH="$inst/lib"
|
|
|
|
osmo-build-dep.sh libosmocore "" --disable-doxygen
|
|
osmo-build-dep.sh libosmo-netif "" --disable-doxygen
|
|
osmo-build-dep.sh libosmo-abis "" --disable-dahdi
|
|
|
|
cd "$deps"
|
|
|
|
osmo-layer1-headers.sh oct "$FIRMWARE_VERSION"
|
|
|
|
configure_flags="\
|
|
--enable-werror \
|
|
--with-octsdr-2g=$deps/layer1-headers/ \
|
|
--enable-octphy \
|
|
--enable-trx \
|
|
--enable-external-tests \
|
|
"
|
|
|
|
build_bts "osmo-bts-octphy+trx" "$configure_flags"
|
|
|
|
osmo-clean-workspace.sh
|