This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 858cfecf9d142c5577b755ebc84d3f88375eb726 (commit)
from c526dbc24f3ec95771085967b9e300c9f9d4fc1f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=858cfecf9d142c5577b755ebc84d…
commit 858cfecf9d142c5577b755ebc84d3f88375eb726
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Nov 3 21:52:01 2017 +0100
debian: build now depends on libgnutls
In Change-Id Ic77866ce65acf524b768882c751a4f9c0635740b we introduced a
gnutls fall-back for random number generation, and made this a default
unless explicitly disabled at compile time. This means the debian
package needs related build dependency.
Change-Id: I918e4b7bf1cb621679dce6339b3c4b69d653e2a6
Related: OS#1694
-----------------------------------------------------------------------
Summary of changes:
debian/control | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom code for Iuh interface".
The branch, master has been updated
via 493366ec7bf6cc8b32692c5fcf3a7d79e8f3b91b (commit)
via 7235ea02d78299471d58f4202d8c8d685b1d5772 (commit)
from 8a257b6c5a3680f436779e8b1371c62924c927ee (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-iuh/commit/?id=493366ec7bf6cc8b32692c5fcf3a7d7…
commit 493366ec7bf6cc8b32692c5fcf3a7d79e8f3b91b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Oct 28 13:55:29 2017 +0200
Link libosmo-ranap against libosmovty
This fixes the following dh-shlibdeps warnings:
Change-Id: I08be684c45c7e95315dba6ccf9892fe6fc7c3f24
dpkg-shlibdeps: warning: symbol install_element used by debian/libosmo-ranap1/usr/lib/x86_64-linux-gnu/libosmo-ranap.so.1.0.0 found in none of the libraries
dpkg-shlibdeps: warning: symbol vty_out used by debian/libosmo-ranap1/usr/lib/x86_64-linux-gnu/libosmo-ranap.so.1.0.0 found in none of the libraries
http://cgit.osmocom.org/osmo-iuh/commit/?id=7235ea02d78299471d58f4202d8c8d6…
commit 7235ea02d78299471d58f4202d8c8d685b1d5772
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Oct 28 13:49:19 2017 +0200
osmo-hnbgw: Avoid useless linking to libosmogsm and libsctp
This fixes the following dpkg-shlibeps warnings:
Change-Id: Ic6a645a93406670d58eb5edf5f2f2e1266168c92
dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/osmo-hnbgw/usr/bin/osmo-hnbgw was not linked against libosmogsm.so.8 (it uses none of the library's symbols)
dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/osmo-hnbgw/usr/bin/osmo-hnbgw was not linked against libsctp.so.1 (it uses none of the library's symbols)
-----------------------------------------------------------------------
Summary of changes:
src/Makefile.am | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
hooks/post-receive
--
Osmocom code for Iuh interface
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via c526dbc24f3ec95771085967b9e300c9f9d4fc1f (commit)
via 834e2ac0ead4544c207ed365151c8c898b5a949c (commit)
from ed029dfab959bca74bd43d86922727c2047eeb4d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=c526dbc24f3ec95771085967b9e3…
commit c526dbc24f3ec95771085967b9e300c9f9d4fc1f
Author: Niro Mahasinghe <niroshan(a)cellXica.net>
Date: Fri Nov 3 12:24:30 2017 +0100
gsm0503_coding.c: Use majority vote in tch_efr_unreorder()
The EFR coding contains some repeated bits. In case there are
transmission errors, some bits may of course get corrupted. It looks
like there's an improvement can be made by taking a majority vote on
those "repetition bits", i.e. if 2 out of 3 bits are the same, then use
that instead of expecting to match all 3 bits.
See 3GPP TS 45.003 Section 3.1.1.3 for reference.
Change-Id: I2a28a4d7fb82aed4d39fe8efeea702effdba3858
http://cgit.osmocom.org/libosmocore/commit/?id=834e2ac0ead4544c207ed365151c…
commit 834e2ac0ead4544c207ed365151c8c898b5a949c
Author: Niro Mahasinghe <niroshan(a)cellXica.net>
Date: Fri Nov 3 12:22:34 2017 +0100
gsm0503_coding.c: Fix tch_efr_unreorder() of one bit
There's an error in tch_efr_unreorder() function in gsm0503_coding.c
that results in increased RBER. One of the indices used by repetition
bit recombining in this function doesn't match 3GPP TS 45.003 section
3.1.1.3, specifically "w(k) = s(223) for k = 231 and 232".
This bug resulted in RBER even under ideal conditions, with no
fading or AWGN present.
Change-Id: I153da7bbc1bb3e01ed31eb5a7417e90841cfcde3
-----------------------------------------------------------------------
Summary of changes:
src/coding/gsm0503_coding.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom layer for OpenEmbedded".
The branch, laforge/nightly has been updated
via 84ca86653d2586f6a60156127d8241db0c5256ee (commit)
from 147c488e013b75c6898229bbad639d1fe83e1a60 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/meta-telephony/commit/?id=84ca86653d2586f6a60156127…
commit 84ca86653d2586f6a60156127d8241db0c5256ee
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Nov 3 09:52:47 2017 +0100
libosmocore: depend on gnutls for compilation now
Change-Id: Ic349f551261715fcc2e3e0b725fd94deaedaa682
-----------------------------------------------------------------------
Summary of changes:
recipes-osmocom/libosmocore/libosmocore_git.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Osmocom layer for OpenEmbedded
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Software-defined analyzer for APCO P25".
The branch, max has been updated
via e2cfbe9d1ebe0db2d80707219db3f0f88152de06 (commit)
via 9858e0cecccfbfb7d46e23da6e71a87de41fe05c (commit)
via 9f6c73e280966d32a7e94fee8b839a88675ada6a (commit)
from 7ae554682a8c78796211fe05f0da4ec52c43a45b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/op25/commit/?id=e2cfbe9d1ebe0db2d80707219db3f0f8815…
commit e2cfbe9d1ebe0db2d80707219db3f0f88152de06
Author: Max <ikj1234i(a)yahoo.com>
Date: Thu Nov 2 20:39:23 2017 -0400
dstar gain
http://cgit.osmocom.org/op25/commit/?id=9858e0cecccfbfb7d46e23da6e71a87de41…
commit 9858e0cecccfbfb7d46e23da6e71a87de41fe05c
Author: Max <ikj1234i(a)yahoo.com>
Date: Thu Nov 2 20:31:01 2017 -0400
dstar alt interleave
http://cgit.osmocom.org/op25/commit/?id=9f6c73e280966d32a7e94fee8b839a88675…
commit 9f6c73e280966d32a7e94fee8b839a88675ada6a
Author: Max <ikj1234i(a)yahoo.com>
Date: Thu Nov 2 20:28:34 2017 -0400
build type debug
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 2 ++
op25/gr-op25_repeater/lib/ambe.c | 2 +-
op25/gr-op25_repeater/lib/ambe_encoder.cc | 3 ++-
op25/gr-op25_repeater/lib/ambe_encoder.h | 4 +++-
op25/gr-op25_repeater/lib/p25p2_vf.cc | 16 ++++++++++++----
op25/gr-op25_repeater/lib/p25p2_vf.h | 4 ++--
6 files changed, 22 insertions(+), 9 deletions(-)
hooks/post-receive
--
Software-defined analyzer for APCO P25
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom layer for OpenEmbedded".
The branch, laforge/nightly has been updated
discards 91cc0a6d7e8b24b553c50fa2143ab199d5a217ee (commit)
discards 3adea3b74325d931fc6577df70da37f3c94350aa (commit)
via 147c488e013b75c6898229bbad639d1fe83e1a60 (commit)
via 5b72b0f3b34751fc8411f4363b9bb9924ba7de43 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (91cc0a6d7e8b24b553c50fa2143ab199d5a217ee)
\
N -- N -- N (147c488e013b75c6898229bbad639d1fe83e1a60)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/meta-telephony/commit/?id=147c488e013b75c6898229bba…
commit 147c488e013b75c6898229bbad639d1fe83e1a60
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Nov 1 14:50:28 2017 +0100
Remove libsmpp34_1.12.bb and use _git instead
Same as we do for other osmocom recipes.
Change-Id: I1dcebbb3170654e15d1bb9644d630b462fd22fbd
http://cgit.osmocom.org/meta-telephony/commit/?id=5b72b0f3b34751fc8411f4363…
commit 5b72b0f3b34751fc8411f4363b9bb9924ba7de43
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Nov 1 14:36:55 2017 +0100
Update PV for osmocom recipes
Change-Id: I2d5933527d333825e92c9748004adfb3e4b3a078
-----------------------------------------------------------------------
Summary of changes:
recipes-osmocom/libosmocore/libosmocore_git.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Osmocom layer for OpenEmbedded
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via ed029dfab959bca74bd43d86922727c2047eeb4d (commit)
from 69b61fe510dd9357040ad0a9f3a1449d913067a7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=ed029dfab959bca74bd43d869227…
commit ed029dfab959bca74bd43d86922727c2047eeb4d
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Oct 26 10:56:04 2017 +0200
Enable GnuTLS fallback
On systems with GNU/Linux kernel older than 3.17 (Debian 8 "jessie" for
example) the osmo_get_rand_id() would always return failure due to
missing getrandom() syscall.
To support such systems, let's add fallback code which uses GnuTLS
library. It can be disabled explicitly via '--disable-gnutls' option at
compile-time, otherwise ./configure will fail if both getrandom() and
GnuTLS are not available. When building with '--enable-embedded' the
fallback is disabled automatically.
Related: OS#1694
Change-Id: Ic77866ce65acf524b768882c751a4f9c0635740b
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 17 +++++++++++++++++
src/gsm/Makefile.am | 5 +++++
src/gsm/gsm_utils.c | 19 ++++++++++++++-----
3 files changed, 36 insertions(+), 5 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The annotated tag, 0.10.2 has been created
at dd80ae65cf8ba396593464c08a7287a92ca96db4 (tag)
tagging 69b61fe510dd9357040ad0a9f3a1449d913067a7 (commit)
replaces 0.10.1
tagged by Harald Welte
on Thu Nov 2 18:56:42 2017 +0100
- Log -----------------------------------------------------------------
Release 0.10.2 for VTY tab breakage revert
-----BEGIN PGP SIGNATURE-----
iQJJBAABCgAzFiEEigrqmUioHHGhfemTShB5H1XkRJYFAln7XFoVHGxhZm9yZ2VA
Z251bW9ua3Mub3JnAAoJEEoQeR9V5ESWn30P/0cFCOWszrImMV+0cHU5zVJkin8V
snDJD1WWQafizMsPXObALlwCfa9IssSxhVu7xZgsLNAocPBJaRrkTh6yUelS4XTp
xXo0LY0fE3bCnfEjArlSH5ycQHc5cFvYOtbtjbs4N7GIwhgUSCBrNiqE7t6VgVNr
Fxx10DbBqCckRBDT+oC1SKZXkbSN0FlSyaxJSCnASTQgcL3W86Q26Lf07QVFZFuJ
X5ZVyhhFIweVtuZI9x9EbLr6UdT0l9yx+srr56G3Swu8H3ohgaKYQ4recYBlOUW7
+dn276nKO1H7WnEg0xVOkxOjtByFGgBj/EzJUc+d8K+QYdAPXgVfnTE64UcoAC2K
Kr589e4raICq2h6Txtc2UkjQ6ZjpdFNU5AMRw0JegEWuGbyDONYHwnj24N5tmBwO
k6fNneWwxrgclThqIJlCcZjWveonT9KA215ZLWvErr/NGke+29v+bmdsWLvGqOVX
nW7dV/m3kYhSyVtHEK5Wcdl/aWe+yRB+0RzJOp/6LGRZksE+A702W9e1Y8Yb0wgX
xTBwCUWY3b22j2EKnIn4+rB5gB6+byJv1yDwxdzwfVQsn4dkTa8ruQZfg6g4KT3Q
wnft+ISIUFFWTSXQ1OPHiUtOnWfl9spXp7wTJbFpMIyV7J7cd2s5WZITqySSE+7v
FeBpe8NLSDg3Uktb
=PJVe
-----END PGP SIGNATURE-----
Harald Welte (1):
Bump version: 0.10.1 → 0.10.2
Max Suraev (2):
Move additional libraries to appropriate place
utils: move linked libraries into common variable
Neels Hofmeyr (1):
Revert "vty: Fix bad use of vector_slot()"
-----------------------------------------------------------------------
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 69b61fe510dd9357040ad0a9f3a1449d913067a7 (commit)
from 74aa0258269296f078e685e21fb08b115567e814 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=69b61fe510dd9357040ad0a9f3a1…
commit 69b61fe510dd9357040ad0a9f3a1449d913067a7
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Nov 2 18:51:03 2017 +0100
Bump version: 0.10.1 → 0.10.2
Change-Id: I88c0d0327fb022b0626ab0feff3f34468b122d4b
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 7 +++++++
1 file changed, 7 insertions(+)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Manuals for Osmocom GSM components".
The branch, master has been updated
via c6259d0ac58bf989a7d524ea4b03e4cabb6cf962 (commit)
from 759effc01cadff3d2b4502d472e4fcf2af81343b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=c6259d0ac58bf989a7d524e…
commit c6259d0ac58bf989a7d524ea4b03e4cabb6cf962
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Nov 2 15:09:53 2017 +0100
OsmoBSC: update CTRL docs
* use proper naming scheme for BTS-specific CTRL commands
* add/update oml-* commands
Change-Id: I5b2cd940b4d84c140fce871f236aeab091b27360
Related: OS#2486
-----------------------------------------------------------------------
Summary of changes:
OsmoBSC/chapters/control.adoc | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
hooks/post-receive
--
Manuals for Osmocom GSM components