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.orgThis 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/sdr_phy has been updated discards b9b2051c3162bebc15d7f493ddd9c3b2d84a7494 (commit) discards 6cc69c0cdca9c832031810e94b91f1f38b5a52bc (commit) discards b131198d6fce8b370ba303fa02659097fffae0c6 (commit) discards a57cc2ba187d855eb6237b8a83fcc74063b7cb44 (commit) discards a0708987998784a91daece832b29041f967f4a68 (commit) discards d75ad5505f0805c36aac57a2c5db06bfa39df6a3 (commit) discards 0ba1df5b455fef7b5f4b0d66692887993ac153f7 (commit) discards f9e0ab6d9204e8f04718d03f1ece7bf3479ab27a (commit) discards 24387a4b661339f0df18c4cadeff86ecf45f9dd3 (commit) via 9e32b343b7b82fcb2ce7e88db756e3d59434a3ab (commit) via f7817555dac388b83947d6430093ea20b67259cc (commit) via bff9ffbf1d8dfff3711d1f5be1970b90bccb5380 (commit) via ca6675d5e0a26b1a3d0ad83290dc48883b44d6a8 (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 (b9b2051c3162bebc15d7f493ddd9c3b2d84a7494) \ N -- N -- N (9e32b343b7b82fcb2ce7e88db756e3d59434a3ab) 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/osmocom-bb/commit/?id=9e32b343b7b82fcb2ce7e88db756e3d59434a3ab commit 9e32b343b7b82fcb2ce7e88db756e3d59434a3ab Author: Vadim Yanitskiy <axilirator at gmail.com> Date: Wed Jul 12 17:58:31 2017 +0700 host/trxcon/scheduler: modify trx_lchan_tx_func definition Initially, it was assumed that TX lchan handler will only compose a burst and return a pointer to the buffer. A burst itself could be sent somewhere outside, e.g. by caller. It would be better to send bursts exactly from handler, because in this case it isn't required to have an external buffer. Change-Id: Ic9dcdd366e68cec38c5840ed8f8cdda8236d67c7 http://cgit.osmocom.org/osmocom-bb/commit/?id=f7817555dac388b83947d6430093ea20b67259cc commit f7817555dac388b83947d6430093ea20b67259cc Author: Vadim Yanitskiy <axilirator at gmail.com> Date: Wed Jul 12 17:49:43 2017 +0700 host/trxcon/trx_if.c: expose the trx_if_tx_burst() Change-Id: Iebd644879e2e9067a94cb638b4ec5b75f806923f http://cgit.osmocom.org/osmocom-bb/commit/?id=bff9ffbf1d8dfff3711d1f5be1970b90bccb5380 commit bff9ffbf1d8dfff3711d1f5be1970b90bccb5380 Author: Vadim Yanitskiy <axilirator at gmail.com> Date: Wed Jul 12 17:48:01 2017 +0700 host/trxcon/trx_if.c: use proper names for burst handlers Change-Id: I3d36e6d80fcf6353379aa308415c306e1a256a7d http://cgit.osmocom.org/osmocom-bb/commit/?id=ca6675d5e0a26b1a3d0ad83290dc48883b44d6a8 commit ca6675d5e0a26b1a3d0ad83290dc48883b44d6a8 Author: Vadim Yanitskiy <axilirator at gmail.com> Date: Wed Jul 12 17:40:22 2017 +0700 host/trxcon/trx_if.c: fix compatibility with OsmoTRX For some reasons, OsmoTRX sends 158-byte long sequences on DATA interface, where the latest two bytes aren't used. Change-Id: Ie9295e9b0d8956d9e87e2ced8cca9d5e68040f88 ----------------------------------------------------------------------- Summary of changes: src/host/trxcon/l1ctl.c | 59 ---------- src/host/trxcon/l1ctl.h | 1 - src/host/trxcon/sched_lchan_handlers.c | 4 +- src/host/trxcon/sched_trx.h | 10 -- src/host/trxcon/trx_if.h | 3 - src/target/fake_trx/.gitignore | 4 - src/target/fake_trx/README | 24 ---- src/target/fake_trx/burst_fwd.py | 78 ------------- src/target/fake_trx/clck_gen.py | 104 ----------------- src/target/fake_trx/ctrl_cmd.py | 77 ------------- src/target/fake_trx/ctrl_if.py | 74 ------------ src/target/fake_trx/ctrl_if_bb.py | 87 -------------- src/target/fake_trx/ctrl_if_bts.py | 87 -------------- src/target/fake_trx/fake_trx.py | 204 --------------------------------- src/target/fake_trx/udp_link.py | 53 --------- 15 files changed, 1 insertion(+), 868 deletions(-) delete mode 100644 src/target/fake_trx/.gitignore delete mode 100644 src/target/fake_trx/README delete mode 100644 src/target/fake_trx/burst_fwd.py delete mode 100755 src/target/fake_trx/clck_gen.py delete mode 100755 src/target/fake_trx/ctrl_cmd.py delete mode 100644 src/target/fake_trx/ctrl_if.py delete mode 100644 src/target/fake_trx/ctrl_if_bb.py delete mode 100644 src/target/fake_trx/ctrl_if_bts.py delete mode 100755 src/target/fake_trx/fake_trx.py delete mode 100644 src/target/fake_trx/udp_link.py hooks/post-receive -- The Open Source GSM Base Band stack