Attention is currently required from: fixeria.
laforge has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/osmo-trx/+/43110?usp=email )
Change subject: libosmo-trx/client: make public API operate on parsed messages
......................................................................
Patch Set 3: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/43110?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Idf53513d06be2337383601494b225b5722c93129
Gerrit-Change-Number: 43110
Gerrit-PatchSet: 3
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, 05 Aug 2026 17:55:46 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: jolly.
laforge has posted comments on this change by jolly. ( https://gerrit.osmocom.org/c/onomondo-ipa/+/43045?usp=email )
Change subject: V1.2: Add more error codes to AddInitialEimResponse
......................................................................
Patch Set 2: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/onomondo-ipa/+/43045?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: onomondo-ipa
Gerrit-Branch: master
Gerrit-Change-Id: Ib4bc1e06b6571d18ff46080f5e5ba1fe3bc0be70
Gerrit-Change-Number: 43045
Gerrit-PatchSet: 2
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Comment-Date: Wed, 05 Aug 2026 16:18:50 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: dexter, jolly.
laforge has posted comments on this change by jolly. ( https://gerrit.osmocom.org/c/onomondo-ipa/+/43044?usp=email )
Change subject: V1.2: Add function ES10b.DisableEmergencyProfile
......................................................................
Patch Set 3:
(1 comment)
File src/ipa/main.c:
https://gerrit.osmocom.org/c/onomondo-ipa/+/43044/comment/6ba53b2f_a1a12cd7… :
PS3, Line 56: printf(" --disable-emergency-profile. Trigger return from emergency profile to previous profile\n");
see my comment on an earlier patch of this series about options that are
not options but actually mutually exclusive actions/operations/modes
--
To view, visit https://gerrit.osmocom.org/c/onomondo-ipa/+/43044?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: onomondo-ipa
Gerrit-Branch: master
Gerrit-Change-Id: I2af2077228fb8c5fa3f254acc15bd0afaa33fe43
Gerrit-Change-Number: 43044
Gerrit-PatchSet: 3
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 05 Aug 2026 16:18:33 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: dexter, jolly.
laforge has posted comments on this change by jolly. ( https://gerrit.osmocom.org/c/onomondo-ipa/+/43042?usp=email )
Change subject: V1.2: Add function ES10b.ReturnFromFallback
......................................................................
Patch Set 3:
(1 comment)
File src/ipa/main.c:
https://gerrit.osmocom.org/c/onomondo-ipa/+/43042/comment/9308da02_3b5c02c8… :
PS3, Line 42: tatic void print_help(void)
: {
: printf("options:\n");
: printf(" -h ......................... print this text.\n");
: printf(" -t TAC ..................... set TAC (default: %s)\n", DEFAULT_TAC);
: printf(" -e eimId ................... set preferred eIM (in case the eUICC has multiple)\n");
: printf(" -r N ....................... set reader number (default: %d)\n", DEFAULT_READER_NUMBER);
: printf(" -c N ....................... set logical channel number (default: %d)\n", DEFAULT_CHANNEL_NUMBER);
: printf(" -f PATH .................... set initial eIM configuration\n");
: printf(" -m ......................... reset eUICC memory\n");
: printf(" --refresh-flag.............. Make eUICC send a CAT refresh after switching profile\n");
: printf(" --execute-fallback-mechanism Trigger enabling of fallback profile\n");
: printf(" --return-from-fallback...... Trigger return from fallback profile to previous profile\n");
: printf(" -n PATH .................... path to nvstate file (default: %s)\n", DEFAULT_NVSTATE_PATH);
: printf(" -y NUM ..................... number of retries for ESipa requests (default: %u)\n",
: DEFAULT_ESIPA_REQ_RETRIES);
: printf(" -a ......................... ask end user for consent\n");
: printf(" -C ......................... CA (Certificate Authority) Bundle file\n");
: printf(" -S ......................... disable HTTPS\n");
: printf(" -I ......................... disable SSL certificate verification (insecure)\n");
: printf(" -E ......................... emulate IoT eUICC (compatibility mode to use consumer eUICCs)\n");
: printf(" -1 ......................... force the IPAd to process only one eUICC package (debug, use with caution)\n");
: }
I have a general problem with this flat approach of options, mixing actual flags/options (like -t/-e/-r/-c/-n/-y/-a/-C/-S/-I/-E/-1) with the actual operations.
The operation like execute-fallback-mechanism or return-from-fallback are exclusive-or and modify what the tool does in general. Those should be something like `--mode initial-eim-config|execute-fallback-mechanism|return-from-fallback|normal` or `--operation ...` with a defualt to normal operation. OR osme other syntax that distinguishes the operational mode from optional flags.
--
To view, visit https://gerrit.osmocom.org/c/onomondo-ipa/+/43042?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: onomondo-ipa
Gerrit-Branch: master
Gerrit-Change-Id: Ib49a8ef3a5ea5639d881ca51eaeeea24f083fe0e
Gerrit-Change-Number: 43042
Gerrit-PatchSet: 3
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 05 Aug 2026 16:17:04 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No