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

samples: lwm2m_client: Fixed building with sysbuild #16

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
55c6944
sysbuild: Change multi image configuration errors to warnings
nordicjm Nov 28, 2023
e55dbc2
samples: various: Add sysbuild configurations
nordicjm Nov 20, 2023
2eabf77
samples: various: Add additional sysbuild configurations
nordicjm Nov 27, 2023
9b27ed1
samples: various: Add more sysbuild configurations
nordicjm Nov 27, 2023
3327be4
samples: cellular: Add sysbuild configurations
nordicjm Dec 19, 2023
d3c0036
sysbuild: Add support for nrf9161dk
nordicjm Dec 19, 2023
437152f
samples: net: https_client: Move files to net
nordicjm Dec 19, 2023
e8212f8
tests: various: Add sysbuild configurations
nordicjm Jan 24, 2024
437d227
sysbuild: zigbee: Enable 802.15.4
tomchy May 9, 2024
63f1ca7
dfu_target_stream: Add progress cleanup
tomchy May 9, 2024
e4e96d0
applications: machine_learning: Adapt to Sysbuild
maje-emb Apr 29, 2024
1c033eb
sysbuild: Add bluetooth mesh DFU metadata support
nordicjm Apr 26, 2024
e72ec03
sysbuild: Exclude boards from partition manager
nordicjm Apr 26, 2024
f06d03b
sysbuild: Add support for matter factory data
nordicjm Apr 26, 2024
bf40fbc
samples/applications: matter: Enable factory data
nordicjm Apr 26, 2024
f155e60
tests: dfu: dfu_target: Rename test
nordicjm Apr 29, 2024
05f2a9e
applications: nrf_desktop: Add sysbuild configuration
nordicjm May 2, 2024
201a4ac
REVERT applications: nrf_desktop: Comment out child/parent builds
nordicjm May 2, 2024
30588e5
sysbuild: Switch to SoCs instead of boards
nordicjm May 3, 2024
dc989af
sysbuild: Add preliminary support for nrf700x patches
nordicjm May 7, 2024
23f3fd5
boards: thingy91: Add initial sysbuild options
nordicjm May 7, 2024
7d7ec81
cmake: sysbuild: Fix partition manager not escaping variables
nordicjm May 8, 2024
e78150f
manifest: Update find-my
nordicjm May 8, 2024
72087a5
sysbuild: Add external flash functionality
nordicjm May 9, 2024
7aaea60
manifest: Update zephyr
nordicjm May 9, 2024
32f90b1
samples/tests/applications: Add sysbuild external flash PM option
nordicjm May 9, 2024
b555ec3
applications/samples/tests: Remove child/parent image twister builds
nordicjm May 9, 2024
3a36774
bootloader: Reduce slots if image is MCUboot
nordicjm May 10, 2024
ec666e9
samples: lwm2m_client: Fixed building with sysbuild
ahasztag May 10, 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