Skip to content
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

dfu_target_stream: Add progress cleanup #15

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b380c6a
sysbuild: Change multi image configuration errors to warnings
nordicjm Nov 28, 2023
a9d8afa
samples: various: Add sysbuild configurations
nordicjm Nov 20, 2023
7b32305
samples: various: Add additional sysbuild configurations
nordicjm Nov 27, 2023
2c0eb94
samples: various: Add more sysbuild configurations
nordicjm Nov 27, 2023
eba7f3a
samples: cellular: Add sysbuild configurations
nordicjm Dec 19, 2023
b115e2e
sysbuild: Add support for nrf9161dk
nordicjm Dec 19, 2023
3f45aa3
samples: net: https_client: Move files to net
nordicjm Dec 19, 2023
1147494
tests: various: Add sysbuild configurations
nordicjm Jan 24, 2024
b2281fa
applications: machine_learning: Adapt to Sysbuild
maje-emb Apr 29, 2024
5edc94f
sysbuild: Add bluetooth mesh DFU metadata support
nordicjm Apr 26, 2024
edf6f49
sysbuild: Exclude boards from partition manager
nordicjm Apr 26, 2024
28fe560
sysbuild: Add support for matter factory data
nordicjm Apr 26, 2024
d73b7f8
samples/applications: matter: Enable factory data
nordicjm Apr 26, 2024
dd7b30d
tests: dfu: dfu_target: Rename test
nordicjm Apr 29, 2024
618579a
applications: nrf_desktop: Add sysbuild configuration
nordicjm May 2, 2024
d18b241
REVERT applications: nrf_desktop: Comment out child/parent builds
nordicjm May 2, 2024
6160829
sysbuild: Switch to SoCs instead of boards
nordicjm May 3, 2024
915dbeb
sysbuild: Add preliminary support for nrf700x patches
nordicjm May 7, 2024
da19c26
boards: thingy91: Add initial sysbuild options
nordicjm May 7, 2024
2bb54d8
cmake: sysbuild: Fix partition manager not escaping variables
nordicjm May 8, 2024
ef970da
manifest: Update find-my
nordicjm May 8, 2024
e3e47a3
sysbuild: Add external flash functionality
nordicjm May 9, 2024
0c2c75e
manifest: Update zephyr
nordicjm May 9, 2024
68334a4
samples/tests/applications: Add sysbuild external flash PM option
nordicjm May 9, 2024
175e6a0
dfu_target_stream: Add progress cleanup
tomchy May 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions applications/asset_tracker_v2/Kconfig.sysbuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

choice BOOTLOADER
default BOOTLOADER_MCUBOOT if !BOARD_NATIVE_SIM
endchoice

config SECURE_BOOT
default y if BOARD_NRF9160DK_NRF9160_NS

config SECURE_BOOT_APPCORE
default y if BOARD_NRF9160DK_NRF9160_NS

config PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY
default y if BOARD_NRF9151DK_NRF9151_NS || BOARD_NRF9161DK_NRF9161_NS
default y if BOARD_NRF9160DK_NRF9160_NS && "${BOARD_REVISION}" = "0.14.0"

source "${ZEPHYR_BASE}/share/sysbuild/Kconfig"
Loading
Loading