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 c265bef48c414ca6c135f803c0c5dfdecbeece72 (commit)
via 02a2afa962799c1519eb78cffa8877fd3da75b2e (commit)
via ffc193443c177c3e41851c445c71fc1095ae2201 (commit)
from 8968b48643686683046a0af403178960f8baf9ed (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=c265bef48c414ca6c135f803c0c5dfd…
commit c265bef48c414ca6c135f803c0c5dfdecbeece72
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Dec 16 20:20:27 2014 +0100
sysmobts: Add slave on/off action for the sysmoBTS2050
Add new power actions for the sysmoBTS2050. This allows to
switch off the secondary/slave when the system temperature
is too high and back on when the normal level is reached.
Do not allow to switch off the master (so remove the enum
value), do not check if the slave is switching itself off.
http://cgit.osmocom.org/osmo-bts/commit/?id=02a2afa962799c1519eb78cffa8877f…
commit 02a2afa962799c1519eb78cffa8877fd3da75b2e
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Dec 16 19:09:30 2014 +0100
sysmobts: Comment out the varpoware options that are not implemented
http://cgit.osmocom.org/osmo-bts/commit/?id=ffc193443c177c3e41851c445c71fc1…
commit ffc193443c177c3e41851c445c71fc1095ae2201
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Dec 16 18:26:35 2014 +0100
sysmobts: Add "normal" actions to execute
Instead of keeping state to remember what was done and needs
to be undone this patch introduces actions that will be executed
when the system is back to normal.
By design the system is considered to be in the normal state
and these actions will be only executed after the system is
coming back to the normal state.
One advantage of this scheme is that an operator can decide
that an overheated systems hould be off duty and requires manual
interaction to be allowed back in service.
The change has only been smoke tested
Fixes: SYS#833
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-sysmo/misc/sysmobts_mgr.h | 15 +++-
src/osmo-bts-sysmo/misc/sysmobts_mgr_2050.c | 20 +++++
src/osmo-bts-sysmo/misc/sysmobts_mgr_temp.c | 70 +++++++++++++---
src/osmo-bts-sysmo/misc/sysmobts_mgr_vty.c | 122 ++++++++++++++++++++++++++--
src/osmo-bts-sysmo/misc/sysmobts_misc.h | 1 +
5 files changed, 211 insertions(+), 17 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 8968b48643686683046a0af403178960f8baf9ed (commit)
via 641a9349317e7b9dec2e38b6cec02a1904267954 (commit)
via 69897d7eed6dc2f992db3499bf9bfe0950f0b34a (commit)
via 0d09e75f9ca09ddbfe10117f2f4caa8993eb9144 (commit)
from 42cc96e2c1edb6863909ef460770bd9e0b23ad58 (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=8968b48643686683046a0af40317896…
commit 8968b48643686683046a0af403178960f8baf9ed
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Dec 12 15:17:02 2014 +0100
sysmobts: Remove unused global variables
We do not need to have these variables anymore. Just remove them.
http://cgit.osmocom.org/osmo-bts/commit/?id=641a9349317e7b9dec2e38b6cec02a1…
commit 641a9349317e7b9dec2e38b6cec02a1904267954
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Dec 16 15:07:15 2014 +0100
sysmobts: Read the clock calibration from another place
Read the clock calibration from the place that will be read by
the BTS process. Use the standard eeprom code for doing that.
The code assumes that this and the other eeprom code don't
write/invlidate the others reason. If that assumption would not
be true calls to eeprom_free_resources should be added.
http://cgit.osmocom.org/osmo-bts/commit/?id=69897d7eed6dc2f992db3499bf9bfe0…
commit 69897d7eed6dc2f992db3499bf9bfe0950f0b34a
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Dec 16 11:17:41 2014 +0100
sysmobts: Don't list non integer parameters in the help
The command can only read integer parameters. Don't offer
buffers as this will lead to error 22.
http://cgit.osmocom.org/osmo-bts/commit/?id=0d09e75f9ca09ddbfe10117f2f4caa8…
commit 0d09e75f9ca09ddbfe10117f2f4caa8993eb9144
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Dec 16 15:01:09 2014 +0100
eeprom: Fix brown paper bag introduced a long while ago
91d204e2db8f53a6ae4827ecc4b0ccb0137375d0 while adding checks
to resolve coverity issues. We simply had no one writing to
the eeprom so this was unnoticed for a long time.
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-sysmo/Makefile.am | 5 +++--
src/osmo-bts-sysmo/eeprom.c | 2 +-
src/osmo-bts-sysmo/main.c | 2 --
src/osmo-bts-sysmo/misc/sysmobts_eeprom.h | 2 +-
src/osmo-bts-sysmo/misc/sysmobts_par.c | 36 +++++++++++++++++++++++++++++--
src/osmo-bts-sysmo/misc/sysmobts_par.h | 2 ++
src/osmo-bts-sysmo/misc/sysmobts_util.c | 33 +++++++++++++++++++++-------
tests/stubs.c | 2 --
8 files changed, 66 insertions(+), 18 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, fairwaves/debian has been updated
discards 705532b83f068a610602abe09b4f9e84d70f8ffc (commit)
discards 94dcada5d24819ce6aaa3888e4e97a67cb8dce94 (commit)
discards 9b3680c7bc53ee680416e847b6fe9920e45937a6 (commit)
via 28a0d6e6e342e1e882ca0930c80daff7081ee18d (commit)
via ce8fee2baa964dcb1b42b2f9ad0e1080eb6aabb4 (commit)
via 0de292473551733229ac2947dc7ab72d6e2038bf (commit)
via a6ad0b44ae45a2fd51b6a55507e8295605431e92 (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 (705532b83f068a610602abe09b4f9e84d70f8ffc)
\
N -- N -- N (28a0d6e6e342e1e882ca0930c80daff7081ee18d)
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/osmo-bts/commit/?id=28a0d6e6e342e1e882ca0930c80daff…
commit 28a0d6e6e342e1e882ca0930c80daff7081ee18d
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Tue Sep 23 14:34:02 2014 +0400
debian: Add gsm_data_shared.h file to make packaging possible
http://cgit.osmocom.org/osmo-bts/commit/?id=ce8fee2baa964dcb1b42b2f9ad0e108…
commit ce8fee2baa964dcb1b42b2f9ad0e1080eb6aabb4
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Tue Sep 23 13:49:09 2014 +0400
debian: Add debian directory to ease building packages
http://cgit.osmocom.org/osmo-bts/commit/?id=0de292473551733229ac2947dc7ab72…
commit 0de292473551733229ac2947dc7ab72d6e2038bf
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Tue Sep 23 13:40:11 2014 +0400
debian: Add gsm_data_shared.c file to make packaging possible
-----------------------------------------------------------------------
Summary of changes:
src/common/l1sap.c | 2 +-
1 file changed, 1 insertion(+), 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, fairwaves/master has been updated
via a6ad0b44ae45a2fd51b6a55507e8295605431e92 (commit)
from d913322b474d4a7d3f359d55214c896505606917 (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=a6ad0b44ae45a2fd51b6a55507e8295…
commit a6ad0b44ae45a2fd51b6a55507e8295605431e92
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Tue Dec 16 16:10:37 2014 +0300
handover fix: we can receive handover rach on trx == bts->c0
-----------------------------------------------------------------------
Summary of changes:
src/common/l1sap.c | 2 +-
1 file changed, 1 insertion(+), 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 "OpenBTS' transceiver retro-fit".
The branch, fairwaves/master has been updated
via 19c392df82fe7acd303e4340059c87c432623881 (commit)
from 48da6f97e3274f751a133365b526f4ca0f3b7ea1 (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=19c392df82fe7acd303e4340059c87c…
commit 19c392df82fe7acd303e4340059c87c432623881
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Tue Dec 16 15:12:57 2014 +0300
Handover support for transceiver (TCH/F TCH/H SDCCH4 SDCCH8)
It allows to enable/disable access burst detection on each subslot individually.
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/Transceiver.cpp | 38 ++++++++++++++++++++++++++++++++++++++
Transceiver52M/Transceiver.h | 1 +
2 files changed, 39 insertions(+)
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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, jerlbeck/wip/gprs-patching has been updated
discards c603cb8212b6a4a156a64e850df71eaca6bcbf1b (commit)
via 363a67f814b5864ec6e28fda525a59da129792ea (commit)
via 486d80c7fee30540ddcdbc48f5901347de723c09 (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 (c603cb8212b6a4a156a64e850df71eaca6bcbf1b)
\
N -- N -- N (363a67f814b5864ec6e28fda525a59da129792ea)
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/openbsc/commit/?id=363a67f814b5864ec6e28fda525a59da…
commit 363a67f814b5864ec6e28fda525a59da129792ea
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Tue Dec 16 08:41:34 2014 +0100
openbsc: Ignore generated coverage analysis files
This patch adds *.gcda and *.gcno to .gitignore to skip files that
are generated by gcc --coverage and related tools.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/openbsc/commit/?id=486d80c7fee30540ddcdbc48f5901347…
commit 486d80c7fee30540ddcdbc48f5901347de723c09
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Mon Dec 15 15:04:32 2014 +0100
sgsn: GSUP client (WIP)
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
Summary of changes:
openbsc/.gitignore | 2 +
.../openbsc/gprs_gsup_client.h} | 40 ++--
openbsc/src/gprs/gprs_gsup_client.c | 225 +++++++++++++++++++++
3 files changed, 249 insertions(+), 18 deletions(-)
copy openbsc/{src/libbsc/bts_unknown.c => include/openbsc/gprs_gsup_client.h} (50%)
create mode 100644 openbsc/src/gprs/gprs_gsup_client.c
hooks/post-receive
--
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 "OpenBTS' transceiver retro-fit".
The branch, staging has been updated
via 93b7f373097f3b1563ff327ffa163846b8da0987 (commit)
from 4ad9ea69aba4a556d105e55cc5b67c5b3fc78fca (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=93b7f373097f3b1563ff327ffa16384…
commit 93b7f373097f3b1563ff327ffa163846b8da0987
Author: Tom Tsou <tom(a)tsou.cc>
Date: Mon Dec 15 20:23:33 2014 -0800
b210: Lock dual-channel tuning access
Frequency tuning is a multi-step process with RF and DDC/DUC protoimns
that can be corrupted if both channels attempt to tune at the same time.
Signed-off-by: Tom Tsou <tom(a)tsou.cc>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/UHDDevice.cpp | 3 +++
1 file changed, 3 insertions(+)
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 "OpenBTS' transceiver retro-fit".
The branch, stop has been deleted
was 7addb8ee25a6ee13a3cb1ec10d2b9dc9f8946c98
-----------------------------------------------------------------------
7addb8ee25a6ee13a3cb1ec10d2b9dc9f8946c98 Transceiver52M: Implement POWEROFF command
-----------------------------------------------------------------------
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 "OpenBTS' transceiver retro-fit".
The branch, staging has been updated
discards 0fcfb5ea0ab84e73f99496ef5ba8a2a2c8c059ca (commit)
via 4ad9ea69aba4a556d105e55cc5b67c5b3fc78fca (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 (0fcfb5ea0ab84e73f99496ef5ba8a2a2c8c059ca)
\
N -- N -- N (4ad9ea69aba4a556d105e55cc5b67c5b3fc78fca)
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/osmo-trx/commit/?id=4ad9ea69aba4a556d105e55cc5b67c5…
commit 4ad9ea69aba4a556d105e55cc5b67c5b3fc78fca
Author: Tom Tsou <tom(a)tsou.cc>
Date: Wed Dec 3 18:47:20 2014 -0800
Transceiver52M: Add X300/X310 and E310 USRP support
Treat X300 similar to N200 and resample with 100 MHz base clocking,
which provides some amount of oversampling for reduced phase error
compared to the 1 sample per symbol receiver. Treat E310 similar to 13
MHz rate devices for the lowest computational use.
Signed-off-by: Tom Tsou <tom(a)tsou.cc>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/UHDDevice.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 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 "OpenBTS' transceiver retro-fit".
The branch, staging has been created
at 0fcfb5ea0ab84e73f99496ef5ba8a2a2c8c059ca (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-trx/commit/?id=0fcfb5ea0ab84e73f99496ef5ba8a2a…
commit 0fcfb5ea0ab84e73f99496ef5ba8a2a2c8c059ca
Author: Tom Tsou <tom(a)tsou.cc>
Date: Wed Dec 3 18:47:20 2014 -0800
Transceiver52M: Add X300/X310 and E310 USRP support
Add device detection and timing values.
Signed-off-by: Tom Tsou <tom(a)tsou.cc>
http://cgit.osmocom.org/osmo-trx/commit/?id=eb54bddf47e087cf340c8a65b36a03c…
commit eb54bddf47e087cf340c8a65b36a03cebd4f174b
Author: Tom Tsou <tom(a)tsou.cc>
Date: Tue Nov 25 16:06:32 2014 -0800
Transceiver52M: Implement POWEROFF command
Add stop and restart capability through the POWEROFF and POWERON
commands. Calling stop causes receive streaming to cease, and I/O
threads to shutdown leaving only the control handling thread running.
Upon receiving a POWERON command, I/O threads and device streaming are
restarted.
Proper shutdown of the transceiver is now initiated by the destructor,
which calls the stop command internally to wind down and deallocate
threads.
Signed-off-by: Tom Tsou <tom(a)tsou.cc>
http://cgit.osmocom.org/osmo-trx/commit/?id=a4d1a4124421473f5f92255e2f3bc44…
commit a4d1a4124421473f5f92255e2f3bc44bfa3937ea
Author: Tom Tsou <tom(a)tsou.cc>
Date: Tue Nov 25 15:46:56 2014 -0800
Transceiver52M: Allow setting gain before POWERON
There is no reason gain settings should not be modifiable when the radio
is running or not.
Signed-off-by: Tom Tsou <tom(a)tsou.cc>
http://cgit.osmocom.org/osmo-trx/commit/?id=b99975917585dc8973cc806a5da0aa3…
commit b99975917585dc8973cc806a5da0aa3fc791b198
Author: Tom Tsou <tom(a)tsou.cc>
Date: Fri Nov 21 12:25:22 2014 -0800
CommonLibs: Add thread cancellation capability
For clean shutdown in the transceiver we need to cancel and join
running threads for orderly unwinding. Thread cancellation points
already exist, so we just need to be able to call on the threads to
exit out when stopping or shutting down.
Don't error when joining a NULL thread, which would be the case if a
thread was stopped before ever being started to begin with.
Signed-off-by: Tom Tsou <tom(a)tsou.cc>
-----------------------------------------------------------------------
hooks/post-receive
--
OpenBTS' transceiver retro-fit