-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
mcuboot: multi-image: Multi Image DFU without external flash #10060
mcuboot: multi-image: Multi Image DFU without external flash #10060
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. |
ea05960
to
8763774
Compare
Test specificationCI/Jenkins/NRF
CI/Jenkins/integration
All integration tests: null Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
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. |
df875fb
to
ef5e547
Compare
2b07cbc
to
dfee3b3
Compare
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.
Approved but please implement the last suggestion
9a4139a
to
6e24a4b
Compare
JlinkError on CHIP test and Java error on nRF Cloud IoT test. I can't be bothered re-running CI if it keeps being broken. |
That's unfortunate. However you should chase the reviewers on sdk-mcuboot PR because without it reviewed, this cannot go in. |
6e24a4b
to
dd67e3a
Compare
removed milestone as agreed with @sigvartmh |
dd67e3a
to
4da4a3b
Compare
a8f260a
to
183e30d
Compare
183e30d
to
3c3f0b7
Compare
9ae8ee7
to
eb4156b
Compare
eb4156b
to
63cbe59
Compare
f3048b3
to
d1fc93b
Compare
2785612
to
2076356
Compare
@@ -182,11 +182,26 @@ config PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY | |||
# option is propagated to the MCUboot child image automatically. | |||
depends on PM_EXTERNAL_FLASH_ENABLED || MCUBOOT | |||
default y if BOOTLOADER_MCUBOOT | |||
imply PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY_1 |
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.
Would like @tejlmand to comment on this from a sysbuild perspective, how can this be used from sysbuild since these do not apply
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.
I don't know how sysbuild handles putting things in external flash to be honest. I'm a bit out of the loop on the whole sysbuild system also :(
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.
@sigvartmh @tejlmand @nordicjm Can you find an agreement here?
2076356
to
6ca3039
Compare
@sigvartmh could you do a force push and rerun the tests ? |
Added the possibility to use Multi Image DFU on nRF53 without external flash. Ref. NCSDK-12809 Signed-off-by: Sigvart Hovland <[email protected]>
6ca3039
to
2124d41
Compare
Is this really relevant for 2.6.0? |
I'm okay with closing this one; I haven't seen anyone requesting this feature for some time. This PR enables users to use multi-image DFU on nRF91/53/52 without external flash, leaving you with very little flash space on the device. It seems it's crashing for some IoT 91 tests also and I don't feel confident to pin point where these tests are failing. |
Then close or remove the milestone tag. |
I actually would like to request this feature, we are currently using a 5340 but would like to use our external flash entirely for storage. |
Hello, I need this feature too. We have a custom appcore and netcore application that uses an small amount of flash, so we don't need external flash. |
Added the possibility to use Multi Image DFU on nRF53 without external flash.
Ref. NCSDK-12809
Signed-off-by: Sigvart Hovland [email protected]