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 33dbecbbeb2368f8f05fff181383f1c3279f0cd3 (commit)
from 458a6f59e38f6cc691c72b89cdc9988ba9cf23b3 (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=33dbecbbeb2368f8f05fff181383…
commit 33dbecbbeb2368f8f05fff181383f1c3279f0cd3
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Nov 28 19:49:05 2017 +0100
coding test: use OSMO_ASSERT
Change-Id: I896d6aaae3c36b87243b7dc270267090dcb44afe
-----------------------------------------------------------------------
Summary of changes:
tests/coding/coding_test.c | 27 ++++++++++-----------------
1 file changed, 10 insertions(+), 17 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 d27d4354c37fbce910869465e60bc226efc6e6f3 (commit)
via 517bda18b21b5127edb92ef79119c885c3b2cd67 (commit)
from 89009751ea7ceda542c254633f4ceef23b3f8f90 (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=d27d4354c37fbce910869465e60bc…
commit d27d4354c37fbce910869465e60bc226efc6e6f3
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Wed Nov 29 19:38:01 2017 +0800
mobile: ms->shutdown was not converted properly to enum
ms->shutdown is ms->shutdown != 0 which should have been
converted to ms->shutdown != MS_SHUTDOWN_NONE. This is fixing
sending SMS.
This was introduced in Iee1140e4848923c7270495c381bf87b7e3fddee1.
Change-Id: Ia74374dd9c0dd0ba9cf5725d66f4d2f2a2cfe9ef
http://cgit.osmocom.org/osmocom-bb/commit/?id=517bda18b21b5127edb92ef79119c…
commit 517bda18b21b5127edb92ef79119c885c3b2cd67
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Nov 30 16:51:58 2017 +0800
mobile: Speculative crash fix of the SI pointer
The SIs are kept per ARFCN and for the current cell the
cs->si alias will be assigned[1]. On mobile_exit all SIs
will be freed but the alias will not be set to NULL.
This is a speculative fix but it doesn't seem to make
things worse.
Related: OS#2690
[1] cs->si = cs->list[cs->arfci].sysinfo;
Change-Id: Icf20f9aa03dd26d4bee78772b7f3da034bb34b99
-----------------------------------------------------------------------
Summary of changes:
src/host/layer23/src/mobile/gsm322.c | 1 +
src/host/layer23/src/mobile/gsm411_sms.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
The Open Source GSM Base Band stack
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 2dee60ef443343a297ffc1bfdb9321c6f7e07a3d (commit)
via ab4d509a830b21b85cc397aca119b8e8e0b96750 (commit)
via bd1dca0859dc9e3653c75af13501e59a587975ef (commit)
from 33eeeef9dcfb3103ddbbac756088825d38ce5f53 (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-hlr/commit/?id=2dee60ef443343a297ffc1bfdb9321c…
commit 2dee60ef443343a297ffc1bfdb9321c6f7e07a3d
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Thu Nov 23 15:27:50 2017 +0100
db_test: also test db_get_auc() return values
Verify that it returns -ENOENT on non-existing IMSI and -ENOKEY for no auth
data.
Move the auc_compute_vectors() stub to the top near the db_get_auc() call, and
just return num_vec to get a successful return value when auth data is present.
Change-Id: Ic0158228afbd78b8ca21f62dffa9f868674682b9
http://cgit.osmocom.org/osmo-hlr/commit/?id=ab4d509a830b21b85cc397aca119b8e…
commit ab4d509a830b21b85cc397aca119b8e8e0b96750
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Thu Nov 23 15:31:12 2017 +0100
osmo-hlr: log details for unknown IMSI / no auth data / db error
For unknown IMSI and no auth data for a known IMSI, log respective messages on
NOTICE level.
For database error, log on ERROR level.
Change-Id: I3838fa78567e7e92d797d90b8b90865d9ebba90a
http://cgit.osmocom.org/osmo-hlr/commit/?id=bd1dca0859dc9e3653c75af13501e59…
commit bd1dca0859dc9e3653c75af13501e59a587975ef
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Thu Nov 23 15:25:30 2017 +0100
db_get_auth_data / db_get_auc: clarify return values
Differentiate between "IMSI unknown" and "IMSI has no auth data": in case of
known IMSI lacking auth data, return -ENOKEY instead of -ENOENT.
Fix API doc comments to reflect what the functions actually return, on top of
adding the -ENOKEY detail.
Adjust db_test expectations from -ENOENT to -ENOKEY where appropriate.
Adjust VTY and CTRL command rc evaluation.
A subsequent patch will use these return values to log details on each of these
situations.
Change-Id: Icf6304d23585f2ed45e050fa27c787f2d66fd3f7
-----------------------------------------------------------------------
Summary of changes:
src/ctrl.c | 18 +++++++++++---
src/db_auc.c | 11 ++++++---
src/hlr.c | 10 ++++++++
src/hlr_vty_subscr.c | 19 ++++++++------
tests/db/db_test.c | 51 +++++++++++++++++++++++++++-----------
tests/db/db_test.err | 70 +++++++++++++++++++++++++++++++++++++++++++++-------
6 files changed, 140 insertions(+), 39 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 "Software-defined analyzer for APCO P25".
The branch, max has been updated
via 5b280ae2ef4944a7831b52620c0dd126fc4fab32 (commit)
from 0927bc11a9117d86e9c9a3e2d8fbcf5d4ac1fe8b (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=5b280ae2ef4944a7831b52620c0dd126fc4…
commit 5b280ae2ef4944a7831b52620c0dd126fc4fab32
Author: Max <ikj1234i(a)yahoo.com>
Date: Wed Nov 29 13:16:50 2017 -0500
updated dv_tx
-----------------------------------------------------------------------
Summary of changes:
op25/gr-op25_repeater/apps/tx/dv_tx.py | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 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 "CI scripts".
The branch, master has been updated
via b3fda807bd69c44db604d549c52ecf1e5b3a0ab8 (commit)
from c7d6cc86384f2120ecd86ed32f71304e977db292 (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=b3fda807bd69c44db604d549c52ecf1e…
commit b3fda807bd69c44db604d549c52ecf1e5b3a0ab8
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Wed Nov 29 18:48:01 2017 +0100
docker for jenkins: update on changes in osmo-python-tests
Download (ADD) the latest patch from git.osmocom.org so that the image gets
rebuilt when new changes were merged to master.
Change-Id: I215f5f6504018d589fa44776a332757a7b870d53
-----------------------------------------------------------------------
Summary of changes:
docker/Dockerfile_osmocom_jenkins.amd64 | 1 +
1 file changed, 1 insertion(+)
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 "UNNAMED PROJECT".
The branch, master has been updated
via 48b951a7a6057f8072dbb17a5315a518d5d5112e (commit)
from 751491cdf9fba3a46911ac46bf0f640588bec286 (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/python/osmo-python-tests/commit/?id=48b951a7a6057f8…
commit 48b951a7a6057f8072dbb17a5315a518d5d5112e
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Wed Nov 29 18:21:18 2017 +0100
osmo_interact_common: add '... !regex' wildcard
Sometimes it is desirable to match any lines, just make sure that a given regex
does *not* exist in the command reply.
For example, during handover config tests, to verify that no handover config
exists, one would have to match an entire 'show running-config' output, which
is subject to change whenever the VTY changes.
Add a wildcard '... !' which allows passing a regex that must not be
encountered, e.g.:
OsmoBSC(config-net)# show running-config
...
network
... !handover
bts 0
...
handover 1
...
This checks that there is no handover config on the network level while bts 0
does have handover config.
Change-Id: I7c1ebb2e7f059047903a53de26a0ec1ce7fa9b98
-----------------------------------------------------------------------
Summary of changes:
osmopy/osmo_interact_common.py | 31 +++++++++++++++++++++++++++----
1 file changed, 27 insertions(+), 4 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 "CI scripts".
The branch, master has been updated
via c7d6cc86384f2120ecd86ed32f71304e977db292 (commit)
from 6a97f52b9a40d40bf6687f19f7f3c766270ff15c (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=c7d6cc86384f2120ecd86ed32f71304e…
commit c7d6cc86384f2120ecd86ed32f71304e977db292
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Nov 28 02:49:01 2017 +0100
jenkins docker: move smalltalk to separate Dockerfile
To reduce docker image rebuild time, move the Smalltalk related commands to a
separate file, which is currently not built by rebuild_osmocom_jenkins_image.sh
since there are no jenkins builds using that yet.
Change-Id: I1142f068100ef07ce7f177adaa8a0fe2fedb1b7b
-----------------------------------------------------------------------
Summary of changes:
docker/Dockerfile_osmocom_jenkins.amd64 | 16 ----------------
docker/Dockerfile_osmocom_jenkins_st.amd64 | 16 ++++++++++++++++
2 files changed, 16 insertions(+), 16 deletions(-)
create mode 100644 docker/Dockerfile_osmocom_jenkins_st.amd64
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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via aaeee90f0b36b573bcba94b75f1d076271ecbbff (commit)
via 63058b1722a7efcb40b4990bde05a3fcdc838771 (commit)
via 5e67f555ac4df1ff3f8639890567bb4e0bdaa411 (commit)
via 808db8625ac2f145dec47af11220fe79fd4e6bcb (commit)
via e357194c2efd696146c77bc6b6e311064d5c470d (commit)
from 91c4274c7d7e9307f246af5b745e4757f2b00ab2 (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=aaeee90f0b36b573bcba94b…
commit aaeee90f0b36b573bcba94b75f1d076271ecbbff
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Nov 17 17:16:54 2017 +0100
OsmoGSMTester: Update import test->testenv
Latest changes in osmo-gsm-tester require this import change.
Depends on: osmo-gsm-tester I520bd046cb09042b5567d967f951f050e4e02e85
Change-Id: I0f7f7d0353014b7ef8a0c5a7707c91b2613be79a
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=63058b1722a7efcb40b4990…
commit 63058b1722a7efcb40b4990bde05a3fcdc838771
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Nov 2 18:04:06 2017 +0100
OsmoGsmTester: Put several permission categories under cat User Permission
Change-Id: Ie9f846af0311d768c5dd6f9da572c8f6482f4d39
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=5e67f555ac4df1ff3f86398…
commit 5e67f555ac4df1ff3f8639890567bb4e0bdaa411
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Nov 2 17:57:58 2017 +0100
OsmoGSMTester: Add state_dir section
Change-Id: Ie12e3933747a4e698de59ff9ac57281e9f261d3d
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=808db8625ac2f145dec47af…
commit 808db8625ac2f145dec47af11220fe79fd4e6bcb
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Nov 2 17:50:08 2017 +0100
OsmoGSMTester: Add suites_dir section
Change-Id: Ie25fd742f484981f5e5b25397c2637eda38f0424
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=e357194c2efd696146c77bc…
commit e357194c2efd696146c77bc6b6e311064d5c470d
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Nov 2 14:45:46 2017 +0100
OsmoGSMTester: Add scenarios_dir section
It explains how scenario combination works
Change-Id: I3f89bd3d71400da14cda7ea8bb9c190fe80a539f
-----------------------------------------------------------------------
Summary of changes:
OsmoGSMTester/chapters/config.adoc | 87 +++++++++++++++++++++++++++++++++++++
OsmoGSMTester/chapters/install.adoc | 8 ++--
OsmoGSMTester/chapters/intro.adoc | 2 +-
3 files changed, 92 insertions(+), 5 deletions(-)
hooks/post-receive
--
Manuals for Osmocom GSM components
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 OpenGGSN project".
The branch, master has been updated
via f1e44c5493eec4f43006747e98ed8bddbf468c4c (commit)
from bebd75c2d1142ede132a39180776e6fb86a86be8 (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-ggsn/commit/?id=f1e44c5493eec4f43006747e98ed8b…
commit f1e44c5493eec4f43006747e98ed8bddbf468c4c
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue Nov 28 11:13:55 2017 +0100
examples: Add secondary ipv6 google DNS to osmo-ggsn.cfg
Change-Id: I5efbd1848a7974cb8dc614c4567de2658b9a7269
-----------------------------------------------------------------------
Summary of changes:
doc/examples/osmo-ggsn.cfg | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--
The OpenGGSN 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 "Software-defined analyzer for APCO P25".
The branch, max has been updated
via 0927bc11a9117d86e9c9a3e2d8fbcf5d4ac1fe8b (commit)
via 796c81f219d3dc23166a8f2109d2a35ffac5cc0a (commit)
via a3f822dcc1bf05cf0c498e705c474b1b5b0380e2 (commit)
from 98e43839b9b04f02864bb33d8755678c48d60f4e (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=0927bc11a9117d86e9c9a3e2d8fbcf5d4ac…
commit 0927bc11a9117d86e9c9a3e2d8fbcf5d4ac1fe8b
Author: Max <ikj1234i(a)yahoo.com>
Date: Wed Nov 29 00:16:18 2017 -0500
vocoder: fix excess cpu usage
http://cgit.osmocom.org/op25/commit/?id=796c81f219d3dc23166a8f2109d2a35ffac…
commit 796c81f219d3dc23166a8f2109d2a35ffac5cc0a
Author: Max <ikj1234i(a)yahoo.com>
Date: Mon Nov 27 13:08:42 2017 -0500
cleanup unused vars
http://cgit.osmocom.org/op25/commit/?id=a3f822dcc1bf05cf0c498e705c474b1b5b0…
commit a3f822dcc1bf05cf0c498e705c474b1b5b0380e2
Author: Max <ikj1234i(a)yahoo.com>
Date: Mon Nov 27 13:07:55 2017 -0500
cleanup unused vars
-----------------------------------------------------------------------
Summary of changes:
op25/gr-op25_repeater/apps/rx.py | 10 ----------
op25/gr-op25_repeater/lib/software_imbe_decoder.cc | 1 -
op25/gr-op25_repeater/lib/vocoder_impl.cc | 12 ++++++++++--
3 files changed, 10 insertions(+), 13 deletions(-)
hooks/post-receive
--
Software-defined analyzer for APCO P25