-
Notifications
You must be signed in to change notification settings - Fork 1.4k
cmake: dfu: Support extra images in DFU packages #24637
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
base: main
Are you sure you want to change the base?
Conversation
d0151e4
to
ca98f6e
Compare
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: ca98f6e7070f2899e9fb5c344bfc37fba09586c2 more detailssdk-nrf:
Github labels
List of changed files detected by CI (6)
Outputs:ToolchainVersion: 2b2cd9579a Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
Memory footprint analysis revealed the following potential issuesapplications.hpf.gpio.icbmsg[nrf54l15dk/nrf54l15/cpuflpr]: High RAM usage: 12430[B] - link (cc: @nrfconnect/ncs-ll-ursus) Note: This message is automatically posted and updated by the CI (latest/sdk-nrf/PR-24637/2) |
This commit extends support for creating DFU update packages (`dfu_application.zip` or `dfu_multi_image.bin`) by allowing applications to add extra images. Signed-off-by: Łukasz Duda <lukasz.duda@nordicsemi.no>
ca98f6e
to
2217a37
Compare
|
||
# Add extra binary to DFU packages | ||
dfu_extra_add_binary( | ||
IMAGE_ID 2 |
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.
Maybe it's worth adding that IMAGE_ID depends on the overall number of images used in a given project?
This commit extends support for creating DFU update packages (
dfu_application.zip
ordfu_multi_image.bin
) by allowing applications to add extra images.