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 cea806e5b9bf7f6c4bdd15520c5914f320fe92f0 (commit)
via b4d368b5769e2808cddd15917ef3f06583e920df (commit)
from da0a194b577df4088de1cc41da19363d014ab94c (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=cea806e5b9bf7f6c4bdd15520c5914f…
commit cea806e5b9bf7f6c4bdd15520c5914f320fe92f0
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Dec 1 17:40:20 2017 +0100
TBF: expand timer logging
* log timer values
* log start/stop cause
* update test output as necessary
This simplifies debugging issues with TBF timers.
Related: OS#2407
Change-Id: Ib8e537416af9bec5d447356286f44e9e8bbf1b7a
http://cgit.osmocom.org/osmo-pcu/commit/?id=b4d368b5769e2808cddd15917ef3f06…
commit b4d368b5769e2808cddd15917ef3f06583e920df
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Dec 1 17:54:39 2017 +0100
TBF: fix compiler warning in test
tbf/TbfTest.cpp: In function ‘void egprs_spb_to_normal_validation(BTS*, unsigned int, unsigned int)’:
tbf/TbfTest.cpp:2788:26: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context]
bsn1 = (egprs2->bsn1_hi << 9) || (egprs2->bsn1_mid << 1)
~~~~~~~~~~~~~~~~~^~~~~
tbf/TbfTest.cpp:2788:53: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context]
bsn1 = (egprs2->bsn1_hi << 9) || (egprs2->bsn1_mid << 1)
~~~~~~~~~~~~~~~~~~^~~~~
tbf/TbfTest.cpp:2825:26: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context]
bsn2 = (egprs3->bsn1_hi << 9) || (egprs3->bsn1_mid << 1) ||
~~~~~~~~~~~~~~~~~^~~~~
tbf/TbfTest.cpp:2825:53: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context]
bsn2 = (egprs3->bsn1_hi << 9) || (egprs3->bsn1_mid << 1) ||
~~~~~~~~~~~~~~~~~~^~~~~
tbf/TbfTest.cpp:2844:26: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context]
bsn3 = (egprs2->bsn1_hi << 9) || (egprs2->bsn1_mid << 1) ||
~~~~~~~~~~~~~~~~~^~~~~
tbf/TbfTest.cpp:2844:53: warning: ‘<<’ in boolean context, did you mean ‘<’ ? [-Wint-in-bool-context]
bsn3 = (egprs2->bsn1_hi << 9) || (egprs2->bsn1_mid << 1) ||
~~~~~~~~~~~~~~~~~~^~~~~
Change-Id: Idf9e5f15faa7810411ed9d68ed43cf907eea2545
-----------------------------------------------------------------------
Summary of changes:
src/bts.cpp | 6 +-
src/tbf.cpp | 33 +--
src/tbf.h | 4 +-
src/tbf_dl.cpp | 8 +-
src/tbf_ul.cpp | 2 +-
tests/tbf/TbfTest.cpp | 9 +-
tests/tbf/TbfTest.err | 630 +++++++++++++++++++++++++-------------------------
7 files changed, 345 insertions(+), 347 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 a6a40dcbfd36d40ab71322e75f8b08ea4933594f (commit)
from 06dbdf59ebc87f32048748b822d8caa27dbee4a2 (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=a6a40dcbfd36d40ab71322e75f8b…
commit a6a40dcbfd36d40ab71322e75f8b08ea4933594f
Author: Max <msuraev(a)sysmocom.de>
Date: Mon Dec 4 13:21:07 2017 +0100
Embedded: fix sercomm test
The external sercomm_drv_[un]lock() functions are defined as stubs in
case of non-embedded build only which causes linking issue with
sercomm_test. Let's define the same stubs in sercomm_test
unconditionally - the implementation details of the locking are
irrelevant for the test anyway.
Related: OS#2708
Change-Id: I3dab4f3348871b66b5d6c9fd10b2e448c61f9e73
-----------------------------------------------------------------------
Summary of changes:
tests/sercomm/sercomm_test.c | 4 ++++
1 file changed, 4 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 "UNNAMED PROJECT".
The branch, master has been updated
via da0a194b577df4088de1cc41da19363d014ab94c (commit)
from 59f50c2718ba30479449ed31ed2202f7a797ca1d (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=da0a194b577df4088de1cc41da19363…
commit da0a194b577df4088de1cc41da19363d014ab94c
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue Dec 5 17:35:22 2017 +0100
Print error cause of pcu socket connect failure
This log is useful to quickly debug scenarions in which pcu never
connects to bts. For instance, if bts is started as root and pcu is not,
pcu will fail to connect to the socket and will fail with "Permission
Denied".
Change-Id: I6fd5736b5916cbad72b96f064929bb667ff97ded
-----------------------------------------------------------------------
Summary of changes:
src/osmobts_sock.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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 "Osmocom layer for OpenEmbedded".
The branch, 201705 has been updated
via 95f1531408a8f5521cf4eb1a60dfd29a5fac0fdb (commit)
from 2e57eb7866433f5cdfb4458ef23d47e03539d0bf (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=95f1531408a8f5521cf4eb1a6…
commit 95f1531408a8f5521cf4eb1a60dfd29a5fac0fdb
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Dec 4 16:55:05 2017 +0100
ortp: Move DEPENDS to inc file and fix whitespace
Change-Id: Idf1c060d8fdbe0a309366ed7bd1e79f40625405c
-----------------------------------------------------------------------
Summary of changes:
recipes-misc/ortp/ortp.inc | 4 ++--
recipes-misc/ortp/ortp_0.25.0.bb | 1 -
2 files changed, 2 insertions(+), 3 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 "Osmocom layer for OpenEmbedded".
The branch, 201705 has been updated
via 2e57eb7866433f5cdfb4458ef23d47e03539d0bf (commit)
from 71ac7c0017548daceeb511c8ae231a63a46018f9 (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=2e57eb7866433f5cdfb4458ef…
commit 2e57eb7866433f5cdfb4458ef23d47e03539d0bf
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Dec 4 16:53:07 2017 +0100
ortp: Remove unused old ortp 0.16.5
A new version 0.25.0 was added around 3 years ago and has been used
since then, because osmocom stack requires at least 0.22.0.
This 0.16.5 version has been unused since then, so we can drop it.
Change-Id: Ica158e8ddabf5a8ce2a2254ca4fabdc35e7db668
-----------------------------------------------------------------------
Summary of changes:
.../ortp/files/0001-fix-unused-variables.patch | 75 ----------------------
.../ortp/files/compile-fixes-newer-gcc.diff | 13 ----
recipes-misc/ortp/ortp_0.16.5.bb | 9 ---
3 files changed, 97 deletions(-)
delete mode 100644 recipes-misc/ortp/files/0001-fix-unused-variables.patch
delete mode 100644 recipes-misc/ortp/files/compile-fixes-newer-gcc.diff
delete mode 100644 recipes-misc/ortp/ortp_0.16.5.bb
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 "Osmocom layer for OpenEmbedded".
The branch, 201705 has been updated
via 71ac7c0017548daceeb511c8ae231a63a46018f9 (commit)
via cbac8369db1767aa3527a75daf859ca9b26d51f7 (commit)
from 127bed3ceb41015d8fd36779689ab6d799f773f6 (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=71ac7c0017548daceeb511c8a…
commit 71ac7c0017548daceeb511c8ae231a63a46018f9
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Dec 4 18:37:22 2017 +0100
osmocom: Use CONFFILES for cfg files
Change-Id: I4a4c7d4a5e3e58c413c82b75f442ae9321d64998
http://cgit.osmocom.org/meta-telephony/commit/?id=cbac8369db1767aa3527a75da…
commit cbac8369db1767aa3527a75daf859ca9b26d51f7
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Dec 4 18:29:50 2017 +0100
osmo-sgsn: Install example osmo-gtphub config file
Change-Id: Ie8ee1e4b1e0d0a7ca00764a1906b1ff26b7bea4d
-----------------------------------------------------------------------
Summary of changes:
recipes-osmocom/libosmo-sccp/libosmo-sccp_git.bb | 3 ++-
recipes-osmocom/osmo-bsc/osmo-bsc.inc | 5 ++++-
recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb | 4 +++-
recipes-osmocom/osmo-hlr/osmo-hlr.inc | 6 +++++-
recipes-osmocom/osmo-iuh/osmo-iuh.inc | 3 ++-
recipes-osmocom/osmo-mgw/osmo-mgw.inc | 3 ++-
recipes-osmocom/osmo-msc/osmo-msc.inc | 3 ++-
recipes-osmocom/osmo-sgsn/osmo-sgsn.inc | 7 ++++++-
8 files changed, 26 insertions(+), 8 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 "Osmocom layer for OpenEmbedded".
The branch, 201705 has been updated
via 127bed3ceb41015d8fd36779689ab6d799f773f6 (commit)
from 9a3c3d32f55f4522772904f1eea0a01e822fcd48 (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=127bed3ceb41015d8fd367796…
commit 127bed3ceb41015d8fd36779689ab6d799f773f6
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Dec 4 16:01:38 2017 +0100
libosmo-abis: Split libosmotrau into its own package
Change-Id: Ica8b6c39aed9f3370aeab84e821c8de871d2f0be
-----------------------------------------------------------------------
Summary of changes:
recipes-osmocom/libosmo-abis/libosmo-abis.inc | 9 ++++++++-
1 file changed, 8 insertions(+), 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 "The Open Source GSM Base Band stack".
The branch, fixeria/trx has been updated
via 8ed6f42772f3002bfa1b8ef8772b138e8cddd443 (commit)
via 0d9680e88ae4aabe54fea89e21f2a5fc14f6d8d6 (commit)
via c5d9507b5ddd04d4ac14dc009b6df20c3098e2cc (commit)
from cd9b850ee4ac4c0a876102924d7456b327a1b250 (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=8ed6f42772f3002bfa1b8ef8772b1…
commit 8ed6f42772f3002bfa1b8ef8772b138e8cddd443
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Mon Dec 4 23:49:29 2017 +0700
host/trxcon: forward Timing Advance value to transceiver
The time at which the phone is allowed to transmit a burst of
traffic within a timeslot must be adjusted accordingly to prevent
collisions with adjacent users. Timing Advance (TA) is the
variable controlling this adjustment. The TA value is normally
between 0 and 63, with each step representing an advance of
one bit period (approximately 3.69 microseconds).
As trxcon doesn't perform actual burst transmission, this value
needs to be forwarded to the transceiver, which will take care
about the timings.
Change-Id: Ia8c0848827ab2b4cd7cf1efe128b28d5c06ec84e
http://cgit.osmocom.org/osmocom-bb/commit/?id=0d9680e88ae4aabe54fea89e21f2a…
commit 0d9680e88ae4aabe54fea89e21f2a5fc14f6d8d6
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Mon Dec 4 20:58:22 2017 +0700
host/trxcon/trx_if.c: get rid of useless commands
The 'SETMAXDLY' command is used on the BTS side to limit maximal
Time of Arrival for access bursts. As we don't receive RACH
bursts on the MS side, the command is useless.
The 'SETRXGAIN' command is used on the BTS side to set initial
receive gain value for TRX. On the MS side it's possible to set
that parameter via command-line options of TRX.
Change-Id: I3e61b4b48193004cdcb241cefabb44c12db93120
http://cgit.osmocom.org/osmocom-bb/commit/?id=c5d9507b5ddd04d4ac14dc009b6df…
commit c5d9507b5ddd04d4ac14dc009b6df20c3098e2cc
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Mon Dec 4 00:18:54 2017 +0700
host/trxcon/trx_ic.c: use osmo_ubit2sbit() from libosmocore
No need to reimplement the existing functions...
Change-Id: Ic9b232c8561609d42dac10e6249a3e1c58c4edc1
-----------------------------------------------------------------------
Summary of changes:
src/host/trxcon/l1ctl.c | 5 ++++-
src/host/trxcon/trx_if.c | 45 ++++++++++++++++++++++++++++-----------------
src/host/trxcon/trx_if.h | 3 +--
3 files changed, 33 insertions(+), 20 deletions(-)
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 "The OpenGGSN project".
The branch, master has been updated
via 4f0343233b83337afa1e1dfb4bcf9d076ecd4be2 (commit)
via bcab7fb4afcd5c9015f05ce1cce02f9a76928217 (commit)
via 427699e6ebcf2f9e3f05198fb1f5afbd408d389e (commit)
from 9c0f4f49e9b15b55cd9baa42c1ba191903664397 (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=4f0343233b83337afa1e1dfb4bcf9d…
commit 4f0343233b83337afa1e1dfb4bcf9d076ecd4be2
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Dec 4 17:33:07 2017 +0100
ggsn: Ignore PCO with length 0, don't abort processing
The existing code would abort iterating over the list of PCO TLVs
if a TLV of length zero was encountered. However, there's nothing
in the spec that would make a zero-length PCO invalid, so we should
continue to iterate over any PCO TLVs after the zero-length one.
This issue was discovered while writing test cases in
osmo-ttcn3-hacks.git
Change-Id: I36660566a8ee2ca80ae6ee99c86e167e7c208df2
http://cgit.osmocom.org/osmo-ggsn/commit/?id=bcab7fb4afcd5c9015f05ce1cce02f…
commit bcab7fb4afcd5c9015f05ce1cce02f9a76928217
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Dec 3 21:43:50 2017 +0100
ggsn.c: Fix byte order of IPCP IPv4 DNS servers
... this probably didn't show up as 8.8.8.8 is dual-endian. doh!
The address was already in network byte order, but msgb_put_u32 "of
course" expects host byte order, ending up the wrong way in the actual
packets :/
Change-Id: Ia4bcac5fcebfc24760432eb66be258a01d78f65f
Closes: OS#2685
http://cgit.osmocom.org/osmo-ggsn/commit/?id=427699e6ebcf2f9e3f05198fb1f5af…
commit 427699e6ebcf2f9e3f05198fb1f5afbd408d389e
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Dec 5 16:30:37 2017 +0100
Log APN and tun names for packets
Change-Id: I6f7ce33f6585b2b78e2b8a5c0f7111f0316d6ddd
-----------------------------------------------------------------------
Summary of changes:
ggsn/ggsn.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
hooks/post-receive
--
The OpenGGSN project