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 ef9ee6116ba145f8a09ecc614bb000004a302145 (commit)
via 7b6071208eb98bb1eaeb667e2fc3869896ed7123 (commit)
via c2083feefae447ad0afac232f38a62dc58d0ee82 (commit)
via 3ee8ac1593957119eec398b0682207dac31a2dd8 (commit)
via 70dd7e5b75b1e7e008545a615d33d1134cf42339 (commit)
via c4324da7c6f684689b6c2343fc817f96c98419b8 (commit)
via 4f9913f1fd3702c8e5af0e1afab0ada9bad3e522 (commit)
from 48d2a55b40871c584b0af8ff4c918a7734a12b59 (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=ef9ee6116ba145f8a09ecc614bb00…
commit ef9ee6116ba145f8a09ecc614bb000004a302145
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 00:32:36 2017 +0200
VIRT-PHY: Don't redefine GSMTAP port number, use libosmocore
Change-Id: I11d04d76292c52ec5ab70893e8c6a2e55586b2ec
http://cgit.osmocom.org/osmocom-bb/commit/?id=7b6071208eb98bb1eaeb667e2fc38…
commit 7b6071208eb98bb1eaeb667e2fc3869896ed7123
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 23:32:55 2017 +0200
VIRT-PHY Use libosmocore unix domain socket helper
Change-Id: Ic0fa003bd7c7468d39a0c39fbea89000d576a4f3
http://cgit.osmocom.org/osmocom-bb/commit/?id=c2083feefae447ad0afac232f38a6…
commit c2083feefae447ad0afac232f38a62dc58d0ee82
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 22:18:52 2017 +0200
VIRT-PHY: reorganize data structures
* l1_model_ms can become a static member of l1_model_ms
* crypto_info_ms can become a static member of l1_state_ms
Change-Id: I94ca4dad1c6c668ce6307d5e5d728b1c1502af12
http://cgit.osmocom.org/osmocom-bb/commit/?id=3ee8ac1593957119eec398b068220…
commit 3ee8ac1593957119eec398b0682207dac31a2dd8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 21:41:24 2017 +0200
VIRT-PHY: some more comments/documentation
Change-Id: I24fc98624178e9441d6cfcd61bc14e17c1391e9e
http://cgit.osmocom.org/osmocom-bb/commit/?id=70dd7e5b75b1e7e008545a615d33d…
commit 70dd7e5b75b1e7e008545a615d33d1134cf42339
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 17:15:14 2017 +0200
VIRT-PHY: Use IPv4 multicast groups for private / local scope
The addresses in the original code make little sense:
* 224.0.0.1 is "All systems on this subnet" and not routed
outside the local ethernet segment
* 225.0.0.1 is in a RESERVED range that shouldn't be used
Change-Id: I8e3acd745e65a6cfa70b681a440da6a59a1ed0b5
http://cgit.osmocom.org/osmocom-bb/commit/?id=c4324da7c6f684689b6c2343fc817…
commit c4324da7c6f684689b6c2343fc817f96c98419b8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 16:37:27 2017 +0200
VIRT-PHY: Use osmo_fd_close() introduced in libosmocore
libosmocore has recently received a new function osmo_fd_close() which
can be used to replace the private fd_close() function in this code.
This requires Change-Id Icd0933eed6a24edde7cdcb378e138897ecc5332c in
libosmocore.
Change-Id: Id8a518dfb09465c2765681407e5581aee2d62d6d
http://cgit.osmocom.org/osmocom-bb/commit/?id=4f9913f1fd3702c8e5af0e1afab0a…
commit 4f9913f1fd3702c8e5af0e1afab0ada9bad3e522
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 16:35:50 2017 +0200
VIRT-PHY: Use new OSMO_SOCK_F_NO_MCAST_{LOOP,ALL} flags
libosmocore has recently gained support for flags like
OSMO_SOCK_F_NO_MCAST_LOOP and OSMO_SOCK_F_NO_MCAST_ALL that can be
passed to the socket initializer functions, further reducing complexity
of the code in osmo_mcast_sock.c here.
The related change-IDs are I5ab5de45c0b64ceb3636ea98245a23defa24ffd4 and
I24a5b1ebc3f84d2d5d4734e54df50efaea26490b in libosmocore.git.
Change-Id: I961aa07a381fef2cf9a2fb5357937864364ca04b
-----------------------------------------------------------------------
Summary of changes:
src/host/virt_phy/include/virtphy/virt_l1_model.h | 19 ++++---
src/host/virt_phy/include/virtphy/virtual_um.h | 17 ++++--
src/host/virt_phy/src/gsmtapl1_if.c | 18 +++----
src/host/virt_phy/src/l1ctl_sap.c | 40 +++++++-------
src/host/virt_phy/src/l1ctl_sock.c | 39 ++++----------
src/host/virt_phy/src/shared/osmo_mcast_sock.c | 63 +++++------------------
src/host/virt_phy/src/virt_l1_model.c | 2 -
src/host/virt_phy/src/virt_l1_sched_simple.c | 2 +-
src/host/virt_phy/src/virt_prim_data.c | 4 +-
src/host/virt_phy/src/virt_prim_fbsb.c | 26 +++++-----
src/host/virt_phy/src/virt_prim_pm.c | 31 ++++++-----
src/host/virt_phy/src/virt_prim_rach.c | 9 ++--
src/host/virt_phy/src/virt_prim_traffic.c | 4 +-
src/host/virt_phy/src/virtphy.c | 10 ++--
14 files changed, 122 insertions(+), 162 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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via a7ccf6158c1e0ad87bda1f5cac07b4aa1bbcf6b2 (commit)
from 5ade8f4b726985c1d61baf1037dd3d1f3aa1f121 (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=a7ccf6158c1e0ad87bda1f5cac07…
commit a7ccf6158c1e0ad87bda1f5cac07b4aa1bbcf6b2
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Jul 11 18:43:09 2017 +0200
add DLMGCP logging category for libosmo-mgcp
In the course of splitting up the openbsc.git repository, we will create
libosmo-mgcp and need a library logging category for that purpose.
Change-Id: I09c587e2d59472cbde852d467d457254746d9e67
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/core/logging.h | 3 ++-
src/logging.c | 5 +++++
2 files changed, 7 insertions(+), 1 deletion(-)
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 d04deae00293820ab27b2b3374e83bb3a5e3e933 (commit)
from 725b3521a3e7b5c75f24afb742f1c90f5369eb0c (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=d04deae00293820ab27b2b3…
commit d04deae00293820ab27b2b3374e83bb3a5e3e933
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue Jul 18 17:24:57 2017 +0200
all manuals: Move date and release from center head to right foot
Otherwise long doc titles (top left) run on top of release and date
making it impossible to read any of them correctly.
Change-Id: I685a981a5cfd82214d1d654aa1553a844c2af157
-----------------------------------------------------------------------
Summary of changes:
build/custom-dblatex.sty | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 2d2fca434209f96ae2c3b9e0221c6a063d23dfd9 (commit)
from b2bbc819218c0f842ad00a1608725cccb780e6bd (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=2d2fca434209f96ae2c3b9e0221c6a0…
commit 2d2fca434209f96ae2c3b9e0221c6a063d23dfd9
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Jul 18 18:34:29 2017 +0200
lc15: port lc15bts-mgr changes
That's mostly changes related to lc15bts-mgr from
https://gitlab.com/nrw_noa/osmo-bts branch nrw/litecell15 based on
eb5b7f80510b603579f7af6d7d5ead296c2fa260 commit.
I wanted to incorporate vty and hardcoded paths changes so we can use it
from this point without major backward-incompatible changes as a base
for future ports.
Change-Id: Iabbaedc84aaaa594150a4e5445c16dd1f6f89858
Related: SYS#3679
-----------------------------------------------------------------------
Summary of changes:
doc/examples/litecell15/lc15bts-mgr.cfg | 52 +-
include/osmo-bts/phy_link.h | 6 +
src/common/Makefile.am | 4 +
src/osmo-bts-litecell15/Makefile.am | 12 +-
src/osmo-bts-litecell15/hw_misc.c | 2 +
src/osmo-bts-litecell15/misc/lc15bts_bts.c | 131 ++++
src/osmo-bts-litecell15/misc/lc15bts_bts.h | 21 +
src/osmo-bts-litecell15/misc/lc15bts_clock.c | 23 -
src/osmo-bts-litecell15/misc/lc15bts_led.c | 333 ++++++++++
src/osmo-bts-litecell15/misc/lc15bts_led.h | 22 +
src/osmo-bts-litecell15/misc/lc15bts_mgr.c | 142 +++--
src/osmo-bts-litecell15/misc/lc15bts_mgr.h | 375 ++++++++++-
src/osmo-bts-litecell15/misc/lc15bts_mgr_temp.c | 154 ++---
src/osmo-bts-litecell15/misc/lc15bts_mgr_vty.c | 799 +++++++++++++++++++-----
src/osmo-bts-litecell15/misc/lc15bts_misc.c | 170 ++++-
src/osmo-bts-litecell15/misc/lc15bts_misc.h | 2 +
src/osmo-bts-litecell15/misc/lc15bts_par.c | 80 ++-
src/osmo-bts-litecell15/misc/lc15bts_par.h | 11 +-
src/osmo-bts-litecell15/misc/lc15bts_power.c | 45 +-
src/osmo-bts-litecell15/misc/lc15bts_power.h | 11 +-
src/osmo-bts-litecell15/misc/lc15bts_temp.c | 25 +-
src/osmo-bts-litecell15/misc/lc15bts_temp.h | 5 +-
22 files changed, 2014 insertions(+), 411 deletions(-)
create mode 100644 src/osmo-bts-litecell15/misc/lc15bts_bts.c
create mode 100644 src/osmo-bts-litecell15/misc/lc15bts_bts.h
create mode 100644 src/osmo-bts-litecell15/misc/lc15bts_led.c
create mode 100644 src/osmo-bts-litecell15/misc/lc15bts_led.h
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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 4d87e22980edb5a0ec170801980f76c837183b32 (commit)
from 4b731a33783b1eb9cfb83577d8fc414433e20eb0 (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/openbsc/commit/?id=4d87e22980edb5a0ec170801980f76c8…
commit 4d87e22980edb5a0ec170801980f76c837183b32
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 19:11:49 2017 +0200
bsc_vty: Add VTY command to test CTRL TRAP feature
Using this new command (introduced in OsmoBSC + OsmoNITB), you can
simulate the generation of TRAP events for testin purposes.
start the control interface monitor as an example client program:
./openbsc/contrib/bsc_control.py -m -d localhost -p 4249
then start OsmoBSC or OsmoNITB, telnet to the VTY and enter 'enable'
mode and issue the following (example) command:
ctrl-interface generate-trap my.foo.var 2342
As a result, on the bsc_control.py you will see:
Got message: TRAP 0 my.foo.var 2342
Change-Id: Ib1d2ec38290dc94797c1b365d9b733e5215ab7d1
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libbsc/bsc_vty.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
hooks/post-receive
--
Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
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 b2bbc819218c0f842ad00a1608725cccb780e6bd (commit)
from 91cecc051a19439733f8b86575e51f94015361ff (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=b2bbc819218c0f842ad00a1608725cc…
commit b2bbc819218c0f842ad00a1608725cccb780e6bd
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Jul 14 14:11:34 2017 +0200
lc15: make default config usable
* add trx-calibration path
* change GSM band to 900
Change-Id: I50bc4a4314a8b48e4000de445f4f05795e1a2d8b
Related: SYS#3722
-----------------------------------------------------------------------
Summary of changes:
doc/examples/litecell15/osmo-bts.cfg | 4 +++-
1 file 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 91cecc051a19439733f8b86575e51f94015361ff (commit)
from 173a4f1f79a6e086682848b16169adbf283234c4 (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=91cecc051a19439733f8b86575e51f9…
commit 91cecc051a19439733f8b86575e51f94015361ff
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Jul 18 17:13:45 2017 +0200
lc15: fix BTS revision and hw options
* remove typo in logging
* add missing return statement
* fix compilation warnings
* add detailed logging for supported GSM band and related errors
Change-Id: I73bccd81ec56845ba11b939937b295eb0f51b4a8
Related: SYS#3728
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-litecell15/l1_if.c | 18 ++++++++++++++----
src/osmo-bts-litecell15/misc/lc15bts_bid.c | 4 +---
2 files changed, 15 insertions(+), 7 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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via 725b3521a3e7b5c75f24afb742f1c90f5369eb0c (commit)
from b052cb0499672bb86c97e764aa77d9eb8ff1d60f (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=725b3521a3e7b5c75f24afb…
commit 725b3521a3e7b5c75f24afb742f1c90f5369eb0c
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue Jul 18 15:23:12 2017 +0200
rtp-amr: Fix typo and trailing whitespace
Change-Id: I8efda2387e0e5e95700b070dab8f8dd427fa562d
-----------------------------------------------------------------------
Summary of changes:
OsmoBTS/rtp-amr.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via b052cb0499672bb86c97e764aa77d9eb8ff1d60f (commit)
from bed4162c70f4a41c79c68af118d53bce4aa3405c (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=b052cb0499672bb86c97e76…
commit b052cb0499672bb86c97e764aa77d9eb8ff1d60f
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue Jul 18 15:21:59 2017 +0200
rtp-amr: Describe requirement to recieve all PH-DATA.ind events
Change-Id: I4a78b3398c36a8107fa1809ba9b89235980f0e4f
-----------------------------------------------------------------------
Summary of changes:
OsmoBTS/rtp-amr-docinfo.xml | 8 +++++
OsmoBTS/rtp-amr.adoc | 86 +++++++++++++++++++++++++++------------------
2 files changed, 59 insertions(+), 35 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 173a4f1f79a6e086682848b16169adbf283234c4 (commit)
from f690e5d45cbbcaf1309a429e934829bd06b00dd7 (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=173a4f1f79a6e086682848b16169adb…
commit 173a4f1f79a6e086682848b16169adbf283234c4
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Jul 18 14:07:33 2017 +0200
lc15-mgr: update parameter read/write
Better match upstream lc15 code:
* fsync on parameter write
* use permanent storage directly for parameters
Change-Id: Iac150bf2ebffc5fa9544b0f3b19cd647996fc8b6
Related: SYS#3728
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-litecell15/misc/lc15bts_par.c | 3 +++
src/osmo-bts-litecell15/misc/lc15bts_par.h | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)