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 "UNNAMED PROJECT".
The branch, master has been updated
via 4c112dc5a6a772e749720b173c80e3f613a710e4 (commit)
from 137fd59bf4635bd661671c94eb9ac67757493f99 (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-pcu/commit/?id=4c112dc5a6a772e749720b173c80e3f…
commit 4c112dc5a6a772e749720b173c80e3f613a710e4
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Feb 1 16:49:23 2018 +0100
TBF: move common test code into functions
* move common code into functions
* print error instead of failing test right away
This allows the tests to continue till completion even in case of
intermediate error which simplifies troubleshooting by allowing to
gather more errors in a single test run.
Change-Id: I1c4ad1dc94542835f15bd666f0821e0ccfcc78c1
Related: OS#1759
-----------------------------------------------------------------------
Summary of changes:
tests/tbf/TbfTest.cpp | 176 +++++++++++++++++++-------------------------------
1 file changed, 67 insertions(+), 109 deletions(-)
hooks/post-receive
--
UNNAMED PROJECT
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 "UNNAMED PROJECT".
The branch, master has been updated
via 137fd59bf4635bd661671c94eb9ac67757493f99 (commit)
from c9ce6f916e92bb2901f39581072db7fe9ccf9ef8 (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-pcu/commit/?id=137fd59bf4635bd661671c94eb9ac67…
commit 137fd59bf4635bd661671c94eb9ac67757493f99
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Jan 5 15:53:08 2018 +0100
RACH: improve single block detection
Replace unreadable if-else ladder in is_single_block() with regular
switch-case. This enables implementation of 11-bit RACH support in
follow-up patches.
Related: OS#1548
Change-Id: I9180478152f9341f11bb3dffe61671da683f24d8
-----------------------------------------------------------------------
Summary of changes:
src/bts.cpp | 72 ++++++++++++++++++++++++-------------------------------------
1 file changed, 28 insertions(+), 44 deletions(-)
hooks/post-receive
--
UNNAMED PROJECT
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 76c6c50405c6cbb1d08bdd7b5d27c657fa5d38b6 (commit)
from 22772cc5293af7944b5fa2fd374652827cb4229d (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=76c6c50405c6cbb1d08bdd7b5d27…
commit 76c6c50405c6cbb1d08bdd7b5d27c657fa5d38b6
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Jan 5 18:13:54 2018 +0100
Use python 3 for utilities
There're no python2-specific code in there so we can switch right away
without waiting till 2020 for python 2 deprecation.
Related: OS#2819
Change-Id: I8d34aed124b00c5dd2ab1bcc84bbfa8c620282cc
-----------------------------------------------------------------------
Summary of changes:
debian/control | 2 +-
utils/conv_codes_gsm.py | 2 +-
utils/conv_gen.py | 2 +-
3 files changed, 3 insertions(+), 3 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 "OpenBTS' transceiver retro-fit".
The branch, master has been updated
via 77ce99ac6720896f504a0581a5c57b2929a13cef (commit)
from f58cd8ac837d13237cf88e93e45550b90d085b15 (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-trx/commit/?id=77ce99ac6720896f504a0581a5c57b2…
commit 77ce99ac6720896f504a0581a5c57b2929a13cef
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Feb 5 13:05:06 2018 +0100
Add support to set Rx/TxAntenna
Some devices have different Rx or Tx ports with different RF characteristics.
For instance LimeSDR has H (High), L (Low) and W (Wide) band Rx ports,
each of one being more suitable to a specific range of frequencies.
In case one wants to support several GSM bands, the best option is to
use the WideBand port and connect the antenna physically to that port in
the board. Then the firmware must be instructed ro read from that port.
Support for Rx/Tx port configuration is already in there for all the
layers (Limesuite, SoapySDR, SoapyUHD, UHD), but we are missing the
required bits in osmo-trx to make use of the available UHD API. This
commit addresses it.
Before this patch, the Rx/Tx paths configured could be changed by means
of the LimeSuiteGUI app, but after running osmo-trx, the values were
changed to the default ones.
One can now start using osmo-trx with 1 channel and specific Rx/Tx ports
by using for instance: osmo-trx -c 1 -y BAND1 -z LNAW
Default behaviour if no specific path or an empry path is passed ("") is
to do the same as preiously, ie. nothing by not calling the
set{T,R}xAntenna APIs.
One can also configure only specific channels, for instance to configure
only the first Tx channel and the second Rx channel:
osmo-trx -c 2 -y BAND1, -z ,LNAW
Change-Id: I1735e6ab05a05b0312d6d679b16ebd4a2260fa23
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/UHDDevice.cpp | 127 ++++++++++++++++++++++++++++++++++++++++--
Transceiver52M/USRPDevice.cpp | 44 ++++++++++++++-
Transceiver52M/USRPDevice.h | 12 ++++
Transceiver52M/osmo-trx.cpp | 64 +++++++++++++++++++--
Transceiver52M/radioDevice.h | 16 +++++-
5 files changed, 253 insertions(+), 10 deletions(-)
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 322cfc49427209e5b686e85c4e5f8eb08037819a (commit)
from aa0f964ce23f9f0c5107e0bbf46166885c82f8d7 (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-bts/commit/?id=322cfc49427209e5b686e85c4e5f8eb…
commit 322cfc49427209e5b686e85c4e5f8eb08037819a
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Feb 7 20:44:31 2018 +0100
Add helper to get BCC from BSIC
Change-Id: Ib539a8739d53ab60d8fadffcef38152b82a28498
Related: OS#1854
-----------------------------------------------------------------------
Summary of changes:
include/osmo-bts/gsm_data_shared.h | 2 ++
src/common/oml.c | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 "CI scripts".
The branch, master has been updated
via 9ac76472baa492a24b23746c7713615e40e98ba9 (commit)
from 9294d2124fb99f0d4c1f9308bfb22e9a050f7391 (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-ci/commit/?id=9ac76472baa492a24b23746c7713615e…
commit 9ac76472baa492a24b23746c7713615e40e98ba9
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Tue Feb 6 15:14:56 2018 +0100
jobs/README.adoc: explain the usage of API Tokens instead of passwords
Change-Id: Ie96288913aae2fe97fa11266ffa9ed098044ccfd
-----------------------------------------------------------------------
Summary of changes:
jobs/README.adoc | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
CI scripts
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 "GSM Audio Pocket Knife".
The branch, master has been updated
via a70b22376c49e8dcc122361c6618d2665062c377 (commit)
from 7a79fc11692779a1f9377b416b6208f1245e7612 (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/gapk/commit/?id=a70b22376c49e8dcc122361c6618d266506…
commit a70b22376c49e8dcc122361c6618d2665062c377
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Feb 2 15:49:16 2018 +0700
src/Makefile.am: fix osmo-gapk LDADD dependency
This change fixes parallel building problem, when osmo-gapk was
being compiled before its libosmogapk dependency:
make[2]: *** No rule to make target '../src/libosmogapk.la',
needed by 'osmo-gapk'. Stop.
make[2]: *** Waiting for unfinished jobs....
For some reason, automake ignores a dependency if the full
path is provided:
$(top_builddir)/src/libosmogapk.la
while the relative path solves the problem:
libosmogapk.la
Closes: OS#2907
Change-Id: I3fdd1731bd372bbb42fe57981e757386e8ede0f0
-----------------------------------------------------------------------
Summary of changes:
src/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GSM Audio Pocket Knife
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 BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via aa0f964ce23f9f0c5107e0bbf46166885c82f8d7 (commit)
from 50cc22a30c8d62af19551dc77819f0d9d6012fa1 (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-bts/commit/?id=aa0f964ce23f9f0c5107e0bbf461668…
commit aa0f964ce23f9f0c5107e0bbf46166885c82f8d7
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Feb 5 21:29:19 2018 +0100
vty: don't print "Bound IP / Port" if it isn't bound [yet]
Change-Id: I28705b56582d334d568d98a371daa6bb9ef1f625
-----------------------------------------------------------------------
Summary of changes:
src/common/vty.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 22772cc5293af7944b5fa2fd374652827cb4229d (commit)
from 80f4c4eb089e87cb1a9c6843b60836b7a6952164 (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=22772cc5293af7944b5fa2fd3746…
commit 22772cc5293af7944b5fa2fd374652827cb4229d
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Feb 6 00:52:08 2018 +0100
vty: fix 'logging print file' output
In If1bd79026a3c680ccf7587d545d12f7759a998fc, an erratic logging output crept
in for an earlier patch state and was merged by accident; fix 'logging print
file (0|1|basename)' output.
Add value string to map LOG_FILENAME_* enum to VTY args, use for both command
evaluation as well as printing the vty config.
The default is 'logging print file 1', hence we could omit an output when '1'
is chosen. But for clarity, always output the current setting.
Change-Id: I1c931bff1f1723aa82bead9dfe548e4cc5b685e0
-----------------------------------------------------------------------
Summary of changes:
src/vty/logging_vty.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 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 "The Open Source GSM Base Band stack".
The branch, master has been updated
via e357646ed708bd5acc56b250d01bd695fff9cd73 (commit)
from 9fa291dd2ba880be0a07c0c3fff1ce537bbee4d1 (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/osmocom-bb/commit/?id=e357646ed708bd5acc56b250d01bd…
commit e357646ed708bd5acc56b250d01bd695fff9cd73
Author: Luca Melette <luca(a)srlabs.de>
Date: Mon Jan 22 17:14:08 2018 +0100
Import gprsdecode utility from SRLabs
This change introduces a modified version of gprsdecode utility,
which is intended to decode the GPRS burst captures and forward
decoded packets to the GSMTAP sink.
The following modifications were made:
- use shared libosmocoding library for GSM 05.03 coding;
- use optget for command line options parsing;
- use a single application select loop;
- use GNU automake as the build system;
- add regression tests (GNU autotest);
- clean up and comment the code;
- add license headers;
The code is based on work of SRLabs:
https://srlabs.de/
git://git.srlabs.de/gprsdecode.git
Related: OS#1672
Change-Id: I12234d37c66b83b8abd60f7511fa1d7837db1856
-----------------------------------------------------------------------
Summary of changes:
src/Makefile | 15 +-
src/host/gprsdecode/.gitignore | 13 +
src/host/gprsdecode/Makefile.am | 36 +
src/host/gprsdecode/README | 8 +
src/host/{gsmmap => gprsdecode}/configure.ac | 19 +-
src/host/gprsdecode/gprs.c | 153 +
src/host/gprsdecode/gprs.h | 23 +
src/host/gprsdecode/gsmtap.c | 105 +
src/host/gprsdecode/gsmtap.h | 9 +
src/host/gprsdecode/l1ctl_proto.h | 1 +
src/host/gprsdecode/main.c | 200 +
src/host/gprsdecode/rlcmac.c | 418 ++
src/host/gprsdecode/rlcmac.h | 43 +
src/host/gprsdecode/tests/Makefile.am | 48 +
src/host/gprsdecode/tests/cs2.decoded | 450 ++
src/host/gprsdecode/tests/cs2.sample | Bin 0 -> 187450 bytes
src/host/gprsdecode/tests/cs3.decoded | 6278 ++++++++++++++++++++++++++
src/host/gprsdecode/tests/cs3.sample | Bin 0 -> 846200 bytes
src/host/gprsdecode/tests/testsuite.at | 20 +
19 files changed, 7830 insertions(+), 9 deletions(-)
create mode 100644 src/host/gprsdecode/.gitignore
create mode 100644 src/host/gprsdecode/Makefile.am
create mode 100644 src/host/gprsdecode/README
copy src/host/{gsmmap => gprsdecode}/configure.ac (64%)
create mode 100644 src/host/gprsdecode/gprs.c
create mode 100644 src/host/gprsdecode/gprs.h
create mode 100644 src/host/gprsdecode/gsmtap.c
create mode 100644 src/host/gprsdecode/gsmtap.h
create mode 120000 src/host/gprsdecode/l1ctl_proto.h
create mode 100644 src/host/gprsdecode/main.c
create mode 100644 src/host/gprsdecode/rlcmac.c
create mode 100644 src/host/gprsdecode/rlcmac.h
create mode 100644 src/host/gprsdecode/tests/Makefile.am
create mode 100644 src/host/gprsdecode/tests/cs2.decoded
create mode 100644 src/host/gprsdecode/tests/cs2.sample
create mode 100644 src/host/gprsdecode/tests/cs3.decoded
create mode 100644 src/host/gprsdecode/tests/cs3.sample
create mode 100644 src/host/gprsdecode/tests/testsuite.at
hooks/post-receive
--
The Open Source GSM Base Band stack