osmo-tetra.git branch master updated. 0ca867eda2ea17d0b4148806dc04ca774b8f185d

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Sun Dec 18 16:24:38 UTC 2016


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 TETRA PHY and MAC implementation".

The branch, master has been updated
       via  0ca867eda2ea17d0b4148806dc04ca774b8f185d (commit)
       via  409d2985cb7d420e0680163dbf281cea0a38639a (commit)
       via  359ef6ba24c18f623af350bc56bc1b83cd026ccc (commit)
       via  043cc0e50600041b8dace5a93115cf1326d15bde (commit)
      from  44956fef8dd59ed94e1a30cc69fdb6d60260b1ed (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-tetra/commit/?id=0ca867eda2ea17d0b4148806dc04ca774b8f185d

commit 0ca867eda2ea17d0b4148806dc04ca774b8f185d
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sun Dec 18 16:51:38 2016 +0100

    remove old gnuradio <= 3.6 demodulator code
    
    keeps some of the device specific scripts in addition to the (supposedly
    generic) osmosdr-tetra_demod_fft.py
    
    Also, update the README file to corresponding changes.
    
    Change-Id: Icae93bb9a6a7219e14931fb6e04a4c6fffa0779d

http://cgit.osmocom.org/osmo-tetra/commit/?id=409d2985cb7d420e0680163dbf281cea0a38639a

commit 409d2985cb7d420e0680163dbf281cea0a38639a
Author: Harald Welte <laforge at gnumonks.org>
Date:   Sun Dec 18 16:44:04 2016 +0100

    demod: Import the new GR 3.7 code
    
    This adds demodulator code compatible with gnuradio 3.7 series.
    
    Change-Id: Ibaf7f9c552cc1625210a75f2e9ec142ab47ce8d6
    Signed-off-by: Sylvain Munaut <tnt at 246tNt.com>

http://cgit.osmocom.org/osmo-tetra/commit/?id=359ef6ba24c18f623af350bc56bc1b83cd026ccc

commit 359ef6ba24c18f623af350bc56bc1b83cd026ccc
Author: Antonio Eugenio Burriel <aeburriel at gmail.com>
Date:   Sun Dec 18 16:21:35 2016 +0100

    Fix ETSI reference codec's patch for building on 64 bit architectures.
    
    merged/ported to osmocom master by Harald Welte
    
    Change-Id: I6b16811d4a3030dfce0718f0b1d266ee1761bfef

http://cgit.osmocom.org/osmo-tetra/commit/?id=043cc0e50600041b8dace5a93115cf1326d15bde

commit 043cc0e50600041b8dace5a93115cf1326d15bde
Author: sq5bpf <sq5bpf+github at lipkowski.org>
Date:   Sun Dec 18 16:11:22 2016 +0100

    Add patches for codec static linking and logging to stderr
    
    Change-Id: I41b32e38c08152e608f20af44db4456ca59169eb

-----------------------------------------------------------------------

Summary of changes:
 README                                            |  13 +-
 etsi_codec-patches/build_as_32bit.patch           |  26 ---
 etsi_codec-patches/fix_64bit.patch                |  34 ++++
 etsi_codec-patches/log_stderr.patch               | 149 +++++++++++++++
 etsi_codec-patches/makefile-cleanups.patch        |   4 +-
 etsi_codec-patches/series                         |   3 +-
 src/demod/Makefile.am                             |  39 ----
 src/demod/Makefile.common                         |  77 --------
 src/demod/apps/Makefile.am                        |   0
 src/demod/config/Makefile.am                      |  31 ---
 src/demod/config/gr_standalone.m4                 | 135 -------------
 src/demod/configure.ac                            |  55 ------
 src/demod/{python => }/cqpsk.py                   | 223 ++++++++++------------
 src/demod/{python => }/fcdp-tetra_demod.py        |  12 +-
 src/demod/{python => }/fcdp-tetra_demod_fft.py    |  12 +-
 src/demod/grc/Makefile.am                         |  22 ---
 src/demod/grc/tetra_demod_qpsk.xml                |  18 --
 src/demod/{python => }/osmosdr-tetra_demod_fft.py |  32 ++--
 src/demod/python/Makefile.am                      |  37 ----
 src/demod/python/__init__.py                      |  28 ---
 src/demod/python/py_run_tests.in                  |   0
 src/demod/python/tetra-demod.py                   |  69 -------
 src/demod/python/uhd-tetra_demod.py               | 130 -------------
 src/demod/python/usrp1-tetra_demod.py             | 133 -------------
 src/demod/python/usrp2-tetra_demod.py             | 112 -----------
 src/demod/{python => }/simdemod2.py               |   4 +-
 26 files changed, 321 insertions(+), 1077 deletions(-)
 delete mode 100644 etsi_codec-patches/build_as_32bit.patch
 create mode 100644 etsi_codec-patches/fix_64bit.patch
 create mode 100644 etsi_codec-patches/log_stderr.patch
 delete mode 100644 src/demod/Makefile.am
 delete mode 100644 src/demod/Makefile.common
 delete mode 100644 src/demod/apps/Makefile.am
 delete mode 100644 src/demod/config/Makefile.am
 delete mode 100644 src/demod/config/gr_standalone.m4
 delete mode 100644 src/demod/configure.ac
 rename src/demod/{python => }/cqpsk.py (67%)
 rename src/demod/{python => }/fcdp-tetra_demod.py (84%)
 rename src/demod/{python => }/fcdp-tetra_demod_fft.py (86%)
 delete mode 100644 src/demod/grc/Makefile.am
 delete mode 100644 src/demod/grc/tetra_demod_qpsk.xml
 rename src/demod/{python => }/osmosdr-tetra_demod_fft.py (87%)
 delete mode 100644 src/demod/python/Makefile.am
 delete mode 100644 src/demod/python/__init__.py
 delete mode 100644 src/demod/python/py_run_tests.in
 delete mode 100755 src/demod/python/tetra-demod.py
 delete mode 100755 src/demod/python/uhd-tetra_demod.py
 delete mode 100755 src/demod/python/usrp1-tetra_demod.py
 delete mode 100755 src/demod/python/usrp2-tetra_demod.py
 rename src/demod/{python => }/simdemod2.py (93%)


hooks/post-receive
-- 
Osmocom TETRA PHY and MAC implementation



More information about the osmocom-commitlog mailing list