-
Notifications
You must be signed in to change notification settings - Fork 59
Update to TF-M 2.3 #255
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
Merged
Merged
Update to TF-M 2.3 #255
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
6f86e09
[zep noup] modules: tf-m: Add fallback __assert_no_args
valeriosetti 2e31fe0
[zep noup] Replace tfm_core_panic with psa_panic in __assert_no_args
valeriosetti 0cdc488
[nrf fromtree] platform: nordic_nrf: Add mramc service for nrf7120
travis3630 8b53ee1
[nrf noup] crypto: Remove TF-PSA-Crypto internal targets
Vge0rge c2e70de
[nrf noup] inteface: Remove headers existing in the Oberon PSA core
Vge0rge a25f604
[nrf noup] crypto: Add PAKE support
frkv 6db3c3f
[nrf noup] Support CMAC KDF and custom builtin solution
frkv 1516c44
[nrf noup] Add definitions for builtin key support
frkv 5241323
[nrf noup] secure_fw: Add option to log output on a shared UART insta…
frkv 4217398
[nrf noup] Add KMU ram region at top
Vge0rge 09e3c72
[nrf noup] crypto: Have CRYPTO_HW_ACCELERATOR support nrf_security
SebastianBoe 2b5dc32
[nrf noup] partitions: crypto: Fix duplicate functions
Vge0rge c4a1ef7
[nrf noup] build: fix TF-M version
tomi-font f19eb6f
[nrf noup] secure_fw: partitions: Remove its dependency
degjorva 1793d22
[nrf noup] secure_fw: platform: Add system off service
Vge0rge 064adc7
[nrf noup] partitions: crypto: Add key wrap support
AntonZma 7eb7331
[nrf noup] crypto: Fix missing WPA3 prerequisite for PAKE
AntonZma 6ad1d0a
[nrf noup] Add github workflow for auto manifest PR
Vge0rge 704fee3
[nrf noup] cmake: remote_library: Skip calling add_subdirectory
Vge0rge e463779
[nrf noup] partitions: crypto: Avoid redef TF_PSA_CRYPTO_CONFIG_FILE
Vge0rge ff06250
[nrf noup] crypto: Use the nRF Security tfm subdir
Vge0rge ef00f32
[nrf noup] platform: Disable warning for null dereference
Vge0rge 03dfa99
[nrf noup] Add missing CPPWR for ARM V8M
Vge0rge b347081
[nrf noup] lib: qcbor: Add target
Vge0rge 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| name: handle manifest PR | ||
| on: | ||
| pull_request_target: | ||
| types: [opened, synchronize, closed, reopened] | ||
| branches: | ||
| - main | ||
| - ncs-v*-branch | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| call-manifest-pr-action: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| base-branch: ${{ steps.set-base-branch.outputs.base_branch }} | ||
| steps: | ||
| # Determine the base branch: | ||
| # * sdk-zephyr/main -> sdk-nrf/main | ||
| # * sdk-zephyr/ncs-vX.Y-branch -> sdk-nrf/vX.Y-branch | ||
| - name: Set base branch | ||
| id: set-base-branch | ||
| run: | | ||
| if [[ "${{ github.event.pull_request.base.ref }}" == "main" ]]; then | ||
| echo "base_branch=main" >> "$GITHUB_OUTPUT" | ||
| elif [[ "${{ github.event.pull_request.base.ref }}" =~ ^ncs-(v[0-9]+\.[0-9]+-branch)$ ]]; then | ||
| branch_name="${{ github.event.pull_request.base.ref }}" | ||
| branch_name="${branch_name#ncs-}" | ||
| echo "base_branch=${branch_name}" >> "$GITHUB_OUTPUT" | ||
| else | ||
| echo "Error: Unsupported base branch: ${{ github.event.pull_request.base.ref }}" >&2 | ||
| exit 1 | ||
| fi | ||
| - name: handle manifest PR | ||
| uses: nrfconnect/action-manifest-pr@main | ||
| with: | ||
| token: ${{ secrets.NCS_GITHUB_TOKEN }} | ||
| manifest-pr-title-details: ${{ github.event.pull_request.title }} | ||
| base-branch: ${{ steps.set-base-branch.outputs.base_branch }} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.