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

sysbuild: Fix nRF9160 DK revision check for external flash #22

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
626a277
Revert "samples: matter: Fix ipc_radio image configuration"
nordicjm May 22, 2024
f38a5d7
Revert "samples: applications: Use ipc_radio as default radio firmware."
nordicjm May 21, 2024
2e77589
cmake: sysbuild: image_signing: Fix not using python
nordicjm May 16, 2024
575921d
sysbuild: kconfig: Deprioritise empty network core image
nordicjm May 17, 2024
5652353
sysbuild: Fix wrongly enabling ECDSA P256 for MCUboot by default
nordicjm May 17, 2024
d28a078
sysbuild: Change multi image configuration errors to warnings
nordicjm Nov 28, 2023
e0d2dab
sysbuild: Add support for nrf9161dk
nordicjm Dec 19, 2023
6a080d1
dfu_target_stream: Add progress cleanup
tomchy May 9, 2024
eb7fe54
sysbuild: Add external flash functionality
nordicjm May 9, 2024
716f4ec
bootloader: Reduce slots if image is MCUboot
nordicjm May 10, 2024
61566b2
sysbuild: Fix trustedfirmare-m
nordicjm May 15, 2024
24127c8
cmake: sysbuild: Add missing BYPRODUCT variables
nordicjm May 15, 2024
ed185f1
samples/applications/tests: Add sysbuild configurations
nordicjm Nov 20, 2023
3368526
sysbuild: Add dependencies on some image config files
nordicjm May 15, 2024
8733f93
sysbuild: Add bluetooth mesh DFU metadata support
nordicjm Apr 26, 2024
01abab6
boards: nrf7002dk: Enable wifi by default
nordicjm May 14, 2024
db44f73
sysbuild: Exclude boards from partition manager
nordicjm Apr 26, 2024
fcc612f
sysbuild: Add support for matter factory data
nordicjm Apr 26, 2024
dfea947
samples/applications: matter: Enable factory data
nordicjm Apr 26, 2024
34f11c3
tests: dfu: dfu_target: Rename test
nordicjm Apr 29, 2024
250a571
sysbuild: Switch to SoCs instead of boards
nordicjm May 3, 2024
96790aa
sysbuild: Add preliminary support for nrf700x patches
nordicjm May 7, 2024
d04027b
boards: thingy91: Add initial sysbuild options
nordicjm May 7, 2024
a668571
cmake: sysbuild: Fix partition manager not escaping variables
nordicjm May 8, 2024
66f2db1
manifest: Update find-my, sidewalk and zephyr
nordicjm May 8, 2024
b12bb2d
cmake: Add deprecation wwarning to child/parent image
nordicjm May 13, 2024
38f43fe
applications: nrf5340_audio: Change build type to file suffix
nordicjm May 13, 2024
013cf35
doc: Change build type to file suffix
nordicjm May 13, 2024
28f8c9f
sysbuild: Add support for dfu_application.zip output
nordicjm May 13, 2024
073d599
cmake: sysbuild: Fix b0 signing
nordicjm May 14, 2024
b034dcf
sysbuild: Add support for Matter OTA
ArekBalysNordic May 14, 2024
5c668fc
sysbuild: Quieten invalid warning messages
nordicjm May 17, 2024
90c20bb
tools: Use ncs-build image based on ubuntu 22
jangalda-nsc May 14, 2024
d277df0
applications/samples/tests: Remove child/parent configuration
nordicjm May 17, 2024
1d143bc
tests: Add some deprecated child/parent image builds
nordicjm May 17, 2024
d2c9833
cmake: bootloader: Only include dummy values when testing
nordicjm May 17, 2024
c67d00a
sysbuild: Add support for OpenThread
maciejbaczmanski May 17, 2024
d06564c
doc: openthread: align with sysbuild configuration flags
maciejbaczmanski May 20, 2024
36ac984
sysbuild: Fix nRF9160 DK revision check for external flash
gregersrygg May 22, 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
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions applications/asset_tracker_v2/Kconfig.sysbuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,26 @@
# 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.1.0" \
&& "${BOARD_REVISION}" != "0.7.0" \
&& "${BOARD_REVISION}" != "0.7.1" \
&& "${BOARD_REVISION}" != "0.8.0" \
&& "${BOARD_REVISION}" != "0.8.2" \
&& "${BOARD_REVISION}" != "0.8.3" \
&& "${BOARD_REVISION}" != "0.8.5" \
&& "${BOARD_REVISION}" != "0.9.0"

source "${ZEPHYR_BASE}/share/sysbuild/Kconfig"
9 changes: 0 additions & 9 deletions applications/asset_tracker_v2/child_image/mcuboot.conf

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading