Bump version: 1.3.1.28-019d-dirty → 1.4.0
Change-Id: Ie675909593b0c383b59b7b4a4edd46cd93283622changes/79/26279/1 1.4.0
parent
019d698126
commit
a7143d3cd0
|
@ -1 +0,0 @@
|
|||
libosmocore > 1.5.1 require APIs osmo_stat_item_group_get_item, rate_ctr_group_get_ctr
|
|
@ -82,10 +82,10 @@ AC_TYPE_SIZE_T
|
|||
AC_HEADER_TIME
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.5.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.5.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCODING, libosmocoding >= 1.5.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.6.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.6.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.6.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCODING, libosmocoding >= 1.6.0)
|
||||
|
||||
AC_ARG_ENABLE(sanitize,
|
||||
[AS_HELP_STRING(
|
||||
|
|
|
@ -34,10 +34,10 @@ BuildRequires: pkgconfig(LimeSuite)
|
|||
BuildRequires: pkgconfig(usrp) >= 3.3
|
||||
%endif
|
||||
BuildRequires: pkgconfig(fftw3f)
|
||||
BuildRequires: pkgconfig(libosmocoding) >= 1.5.0
|
||||
BuildRequires: pkgconfig(libosmocore) >= 1.5.0
|
||||
BuildRequires: pkgconfig(libosmoctrl) >= 1.5.0
|
||||
BuildRequires: pkgconfig(libosmovty) >= 1.5.0
|
||||
BuildRequires: pkgconfig(libosmocoding) >= 1.6.0
|
||||
BuildRequires: pkgconfig(libosmocore) >= 1.6.0
|
||||
BuildRequires: pkgconfig(libosmoctrl) >= 1.6.0
|
||||
BuildRequires: pkgconfig(libosmovty) >= 1.6.0
|
||||
BuildRequires: pkgconfig(libusb-1.0)
|
||||
BuildRequires: pkgconfig(uhd)
|
||||
%{?systemd_requires}
|
||||
|
|
|
@ -1,3 +1,43 @@
|
|||
osmo-trx (1.4.0) unstable; urgency=medium
|
||||
|
||||
[ Pau Espin Pedrol ]
|
||||
* Threads.cpp: Fix missing extern C around libosmocore include
|
||||
* Drop logging pthread ID
|
||||
* Threads: Avoid printing pthread_self()
|
||||
* ipc: Makefile.am: Clean LDADD variable
|
||||
* Use new stat item/ctr getter APIs
|
||||
* detectBurst(): Clear downsampling code path
|
||||
* detectBurst(): constify parameter
|
||||
* computeCI(): Constify param and pass it as reference
|
||||
* computeCI(): Rename verbose repeated getter to constant
|
||||
* computeCI(): Constify read-only variable
|
||||
* detectGeneralBurst(): Increase log level about clipping to INFO
|
||||
* cosmetic: Fix typo in comment
|
||||
* computeCI: Document hardcoded multiplier
|
||||
* lms: Drop duplicated check
|
||||
* lms,uhd: Validate band of RxFreq too
|
||||
* lms,uhd: Skip re-assigning same band
|
||||
* lms,uhd: Allow changing band between poweroff & poweron
|
||||
|
||||
[ Vadim Yanitskiy ]
|
||||
* gitignore: remove non-existing 'doc/manuals/osmomsc-usermanual.xml'
|
||||
* ctrl_sock_handle_rx(): fix missing space in LOGCHAN() statement
|
||||
* trx_rate_ctr: use thread safe strerror() in device_sig_cb()
|
||||
* IPCDevice: use thread safe strerror_r() instead of strerror()
|
||||
* IPCDevice: check value returned from select()
|
||||
* LMSDevice: LMS_GetDeviceList() may return a negative number
|
||||
|
||||
[ Eric ]
|
||||
* add hidden fn adjustment command
|
||||
* uhd: ensure configured clock source is actually used
|
||||
* vty: printing fn offset should be signed
|
||||
* lms: init band
|
||||
|
||||
[ Oliver Smith ]
|
||||
* d/patches/build-for-debian8.patch: remove
|
||||
|
||||
-- Pau Espin Pedrol <pespin@sysmocom.de> Tue, 16 Nov 2021 16:27:26 +0100
|
||||
|
||||
osmo-trx (1.3.1) unstable; urgency=medium
|
||||
|
||||
* mark uhddev_ipc.cpp as BUILT_SOURCES
|
||||
|
|
|
@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 9),
|
|||
libtalloc-dev,
|
||||
libusrp-dev,
|
||||
liblimesuite-dev,
|
||||
libosmocore-dev (>= 1.5.0),
|
||||
libosmocore-dev (>= 1.6.0),
|
||||
osmo-gsm-manuals-dev
|
||||
Standards-Version: 3.9.6
|
||||
Vcs-Browser: http://cgit.osmocom.org/osmo-trx
|
||||
|
|
Loading…
Reference in New Issue