Attention is currently required from: fixeria.
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/34321?usp=email )
Change subject: bts_siemens_bs11: remove ip.access nanoBTS specific code
......................................................................
Patch Set 1:
(1 comment)
File src/osmo-bsc/bts_siemens_bs11.c:
https://gerrit.osmocom.org/c/osmo-bsc/+/34321/comment/bb23f193_f8a8572f
PS1, Line 466: GSM_BTS_TYPE_BS11
you can also remove that check here in a similar manner.
I think the real cause of this is that we used to do this upon receiving a signal. And that signal would get sent to all of the BTS models/drivers, and each signal handler had to make sure it only cares about its matching BTSs.
--
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/34321?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I2db92fe448b1f4cd25c1e5c6e1bb9593795c9cb2
Gerrit-Change-Number: 34321
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 06 Sep 2023 13:46:26 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: dexter, fixeria.
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/pysim/+/34325?usp=email )
Change subject: pySim-shell: fix commandline option -a (verify_adm)
......................................................................
Patch Set 1: Code-Review+1
(1 comment)
Patchset:
PS1:
> (FYI: We had a similar problem before, see also: Ic87e1bff221b10d33d36da32b589e2737f6ca9cd)
well, all this tells me is that there is a lack of test coverage. We should add something to our test scripts to make sure we test that command line option during the pysim tester execution.
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/34325?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ic1e54d0e9e722d64b3fbeb044134044d47946f7c
Gerrit-Change-Number: 34325
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 06 Sep 2023 13:43:37 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: dexter <pmaier(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: fixeria, laforge.
dexter has posted comments on this change. ( https://gerrit.osmocom.org/c/pysim/+/34325?usp=email )
Change subject: pySim-shell: fix commandline option -a (verify_adm)
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
(FYI: We had a similar problem before, see also: Ic87e1bff221b10d33d36da32b589e2737f6ca9cd)
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/34325?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ic1e54d0e9e722d64b3fbeb044134044d47946f7c
Gerrit-Change-Number: 34325
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 06 Sep 2023 13:11:57 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/34325?usp=email )
Change subject: pySim-shell: fix commandline option -a (verify_adm)
......................................................................
pySim-shell: fix commandline option -a (verify_adm)
The commandline option -a, which does an ADM verification on startup,
does no longer work since the verify_adm method is no longer available
in the card base classes (cards.py). Let's use the verify_chv method
from SimCardCommands instead.
Related: RT#68294
Change-Id: Ic1e54d0e9e722d64b3fbeb044134044d47946f7c
---
M pySim-shell.py
1 file changed, 16 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/25/34325/1
diff --git a/pySim-shell.py b/pySim-shell.py
index af7dbca..c7b2607 100755
--- a/pySim-shell.py
+++ b/pySim-shell.py
@@ -1049,7 +1049,7 @@
if not card:
print("Card error, cannot do ADM verification with supplied ADM pin now.")
try:
- card.verify_adm(h2b(pin_adm))
+ card._scc.verify_chv(card._adm_chv_num, h2b(pin_adm))
except Exception as e:
print(e)
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/34325?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ic1e54d0e9e722d64b3fbeb044134044d47946f7c
Gerrit-Change-Number: 34325
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-MessageType: newchange
Attention is currently required from: daniel, fixeria, lynxis lazus, pespin.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34255?usp=email )
Change subject: dia2gsup: Introduce new error scenario tests
......................................................................
Patch Set 2:
(2 comments)
File dia2gsup/DIA2GSUP_Tests.ttcn:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34255/comment/53428b8a_cd43…
PS2, Line 249: 2
> We should not be investing more time than strictly necessary on this, so I'd merge it as it is. […]
Ack
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34255/comment/ef869de0_1e66…
PS2, Line 266: var D2G_ConnHdlr vc_conn;
> IMHO new lines between var blocks and f_init() would make this more readable
resolving
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34255?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ic870a2c1de74bee3f7d8e26874635d58469ccbea
Gerrit-Change-Number: 34255
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-Attention: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Comment-Date: Wed, 06 Sep 2023 12:01:07 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: osmith <osmith(a)sysmocom.de>
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: comment