Skip to content

Commit

Permalink
sysbuild: Fix nRF9160 DK revision check for external flash
Browse files Browse the repository at this point in the history
Update the board revision check with board revisions that doesn't have
external flash.

Signed-off-by: Gregers Gram Rygg <[email protected]>
  • Loading branch information
gregersrygg committed May 22, 2024
1 parent d06564c commit 36ac984
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion applications/asset_tracker_v2/Kconfig.sysbuild
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ config SECURE_BOOT_APPCORE

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"
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"

0 comments on commit 36ac984

Please sign in to comment.