-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
modules: tf-m: fix git clone during build #76094
modules: tf-m: fix git clone during build #76094
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Module PR: zephyrproject-rtos/trusted-firmware-m#109 |
@nashif not sure if this was discussed for 3.7 inclusion but figured I'd tag you to make sure the decision is documented |
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.
No objections to pulling it this way from the TSC.
Added dnm until the module PR is merged, and this PR manifest points to a commit in the module and not PR |
Thanks @tomi-font, the module PR has been merged. Please update the manifest pointer. |
As of v2.1.0 TF-M has updated to CMSIS v6 and switched from hosting the sources to depending on the upstream repository, cloning it at build time. To prevent a download from happening during the build, CMSIS v6 sources are pushed to Zephyr's fork of TF-M and the `CMSIS_PATH` CMake variable is set to point to them. Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
5fd2185
10d75b3
to
5fd2185
Compare
Do we also plan on forking the CMSIS v6 repo for after the release? |
As of v2.1.0 TF-M has updated to CMSIS v6 and switched from hosting the sources to depending on the upstream repository, cloning it at build time.
To prevent a download from happening during the build, CMSIS v6 sources are pushed to Zephyr's fork of TF-M and the
CMSIS_PATH
CMake variable is set to point to them.Fixes #76090.