-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
nrf54l15dk: patches needed for run MUBoot based dfu #17334
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. |
0de9932
to
87d60b6
Compare
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:more detailsGithub labels
List of changed files detected by CI (0)
Outputs:ToolchainVersion: Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
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.
Thank you 🚀
@@ -28,14 +28,14 @@ config PM_PARTITION_SIZE_TFM | |||
default 0xFE00 if TFM_PROFILE_TYPE_MINIMAL && TFM_CMAKE_BUILD_TYPE_DEBUG && \ | |||
BOOTLOADER_MCUBOOT | |||
default 0x10000 if TFM_PROFILE_TYPE_MINIMAL && TFM_CMAKE_BUILD_TYPE_DEBUG | |||
default 0x6800 if TFM_PROFILE_TYPE_MINIMAL && BOOTLOADER_MCUBOOT && SOC_NRF54L15_ENGA_CPUAPP | |||
default 0x6800 if TFM_PROFILE_TYPE_MINIMAL && BOOTLOADER_MCUBOOT && (SOC_NRF54L15_ENGA_CPUAPP || SOC_NRF54L15_ENGA_CPUAPP) |
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.
Did you mean:
default 0x6800 if TFM_PROFILE_TYPE_MINIMAL && BOOTLOADER_MCUBOOT && (SOC_NRF54L15_ENGA_CPUAPP || SOC_NRF54L15_ENGA_CPUAPP) | |
default 0x6800 if TFM_PROFILE_TYPE_MINIMAL && BOOTLOADER_MCUBOOT && (SOC_NRF54L15_ENGA_CPUAPP || SOC_NRF54L15_CPUAPP) |
Same below?
@@ -3,7 +3,7 @@ | |||
# In nRF54L15 we place the TF-M non-secure storage partitions after the | |||
# TF-M non-secure application to avoid splitting the secure/non-secure | |||
# partitions more than necessary. | |||
#ifdef CONFIG_SOC_NRF54L15_ENGA_CPUAPP | |||
#ifdef (CONFIG_SOC_NRF54L15_ENGA_CPUAPP || CONFIG_SOC_NRF54L15_CPUAPP) |
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.
#ifdef (CONFIG_SOC_NRF54L15_ENGA_CPUAPP || CONFIG_SOC_NRF54L15_CPUAPP) | |
#if defined(CONFIG_SOC_NRF54L15_ENGA_CPUAPP) || defined(CONFIG_SOC_NRF54L15_CPUAPP) |
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.
And the same below.
87d60b6
to
82f2b4a
Compare
82f2b4a
to
af622fa
Compare
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
22d13f5
to
9bd0569
Compare
9bd0569
to
e3fac52
Compare
e3fac52
to
9b20dc0
Compare
9b20dc0
to
8d9cb62
Compare
I think that the MCUboot configuration misses one entry to disable FPROTECT
When building the Bluetooth Peripheral LBS sample with the following command:
I get the following output:
|
The last update fixed the issue with FPROTECT. The happy path for the swap mode works as expected:
|
test-fw-nrfconnect-proprietary_esb - passed after re-run The rest CIs are green |
When re-running CI, go to the PR ci job itself (not individual jobs) then click build, the |
A few placement changes had been done for nRF54l15pdk, but were not copied for the DK. This commit add them for the board. Signed-off-by: Andrzej Puzdrowski <[email protected]>
8d9cb62
to
005c5f4
Compare
@nvlsianpu, did you forget to bump the revision of sdk-zephyr in west manifest? It points still to the merged Zephyr PR? |
@kapi-no will fix in a moment - did locally, forgot to push... |
To version with fixes to nrf54l15dk board, which are needed for running MCUboot and BLE DFU. Signed-off-by: Andrzej Puzdrowski <[email protected]>
005c5f4
to
28d2fa5
Compare
This introduce changes missung in nRF54l15DK support,
mainly follow what have been done for the PDK.
These patches are needed for run MUBoot based dfu.