commit | 50d680c433e4eb39990fd998326d0e6164d33458 | [log] [tgz] |
---|---|---|
author | Jerome Forissier <jerome@forissier.org> | Tue May 05 14:20:39 2020 +0200 |
committer | Jérôme Forissier <jerome@forissier.org> | Tue May 05 18:20:54 2020 +0200 |
tree | 9195193b40f84303ebdd4162569abc033b43de6d | |
parent | a8f0bfcf32669095238128fda35cac5768621c7a [diff] |
scripts/gen_ldelf_hex.py: do not use f-strings f-strings were introduced in Python 3.6 [1] and will therefore cause an error with prior versions: | File "scripts/gen_ldelf_hex.py", line 68 | print(f'RO load segment found after RW one(s) (m={n})') | ^ | SyntaxError: invalid syntax For better compatibility use .format() instead. Link: [1] https://docs.python.org/3/whatsnew/3.6.html#pep-498-formatted-string-literals Fixes: c706c2449b50 ("scripts/gen_ldelf_hex.py: relax rules for PT_LOAD segments") Signed-off-by: Jerome Forissier <jerome@forissier.org> Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
This git contains source code for the secure side implementation of OP-TEE project.
All official OP-TEE documentation has moved to http://optee.readthedocs.io.
// OP-TEE core maintainers