-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modify check generated files script to work with TF PSA Crypto too #8523
Merged
gilles-peskine-arm
merged 34 commits into
Mbed-TLS:development
from
tom-daubney-arm:modify_check_generated_files_script
Dec 11, 2023
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
b4f1ee0
Remove superfluous leading whitespace
tom-daubney-arm c9f8386
Modify check-generated-files.sh to work in both repos
tom-daubney-arm b10cc7a
Modify generate_driver_wrappers.py to work in both repos
tom-daubney-arm d3f8443
Further modify check-generated-files.sh
tom-daubney-arm 0bb761c
Remove further extraneous whitespace in lcov script
tom-daubney-arm c1750bb
Apply correct license to generate_driver_wrappers.py
tom-daubney-arm e58128e
Refactor repository detection
tom-daubney-arm d289b8b
Stylise TF-PSA-Crypto correctly
tom-daubney-arm 0eb2dc1
Call the right function
tom-daubney-arm 4291bc2
Remove trailing whitespace
tom-daubney-arm 5556f90
Rename variables in script
tom-daubney-arm 13ecb69
Introduce function to return library/core directory
tom-daubney-arm 79cae20
Remove useless line
tom-daubney-arm b42c50b
Make use of new crypto_core_directory function
tom-daubney-arm 772056c
Replace repo_root with project_root
tom-daubney-arm d35b94b
Improve implementation of crypto_core_directory
tom-daubney-arm 755d321
Rename guess_mbedtls_root to guess_project_root
tom-daubney-arm d0c3076
Make use of crypto_core_directory function in script
tom-daubney-arm 8932404
Introduce project_crypto_name in build_tree.py
tom-daubney-arm beec452
Use os.path.join in crypto_core_directory
tom-daubney-arm cdbf2fd
Add documentation for new public functions
tom-daubney-arm fc60e9b
Make function calls consistent
tom-daubney-arm 6130a61
Remove unused variable
tom-daubney-arm e8f3789
Revert change that removed in_tf_psa_crypto_repo variable
tom-daubney-arm 08c6dc4
Rename project_crypto_name
tom-daubney-arm 46588de
Improve documentation of crypto_core_directory
tom-daubney-arm 56bee03
Rename variable for better clarity
tom-daubney-arm d1f2934
Introduce guess_mbedtls_root
tom-daubney-arm db80b23
Introduce guess_tf_psa_crypto_root
tom-daubney-arm 99030e2
Remove trailing whitespace
tom-daubney-arm 04c446c
Modify crypto_core_directory to also return a relative path
tom-daubney-arm 3a06906
Use guess_mbedtls_root in Mbed-TLS-only script
tom-daubney-arm 10769bc
Fix bad whitespace in keyword argument assignment
tom-daubney-arm f05b768
Use existing variable containing full path
tom-daubney-arm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This won't find the mbedtls root if called from a TF-PSA-Crypto submodule of mbedtls. That's ok for now, we'll just have to improve it later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the heads up, and for the review.