dexter has submitted this change. ( https://gerrit.osmocom.org/c/onomondo-eim/+/42992?usp=email )
(
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: contrib/tryme_euiccDataRequest: fixup example tag string ......................................................................
contrib/tryme_euiccDataRequest: fixup example tag string
The eUICC data request takes a string with TLV tags as input. The example in this example still uses tags from SGP.32 V.1.0.1, let's update the string so that it is compliant with SGP.32 V.1.2.
(see also SGP.32, section 2.11.1.2)
Change-Id: I5be04c954330638d3e7d78e8f5f280bebb707efa Related: SYS:8100 --- M contrib/tryme_euiccDataRequest.sh 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: jolly: Looks good to me, approved Jenkins Builder: Verified
diff --git a/contrib/tryme_euiccDataRequest.sh b/contrib/tryme_euiccDataRequest.sh index 7411c13..ba70a69 100755 --- a/contrib/tryme_euiccDataRequest.sh +++ b/contrib/tryme_euiccDataRequest.sh @@ -1,6 +1,6 @@ #!/bin/bash . ./tryme.cfg -JSON='{ "eidValue" : "'$EID'", "order" : { "edr" : {"tagList" : "80BF20BF228384A5A688A9BF2B" } } }' +JSON='{ "eidValue" : "'$EID'", "order" : { "edr" : { "tagList" : "81BF20BF228384A5A6A8A9A0" } } }' RC=`./restop.py -c -f edr -j "$JSON"` echo $RC