@@ -55,16 +55,59 @@ config CHIP_NFC_COMMISSIONING
55
55
help
56
56
Enables sharing the onboarding payload in the NFC tag.
57
57
58
- # See config/zephyr/Kconfig for full definition
59
- config CHIP_OTA_REQUESTOR
60
- bool
61
- imply DFU_MULTI_IMAGE
62
- imply DFU_TARGET
58
+ choice CHIP_BOOTLOADER
59
+ prompt "Bootloader implementation for Matter purposes"
60
+ default CHIP_BOOTLOADER_SUIT if SOC_SERIES_NRF54HX
61
+ default CHIP_BOOTLOADER_MCUBOOT if !BOARD_NRF21540DK
62
+ default CHIP_BOOTLOADER_NONE
63
+
64
+ config CHIP_BOOTLOADER_SUIT
65
+ bool "SUIT for Matter purposes"
66
+ imply SUIT
67
+ imply SSF_SUIT_SERVICE_ENABLED
68
+
69
+ config CHIP_BOOTLOADER_MCUBOOT
70
+ bool "MCUBOOT for Matter Bootloader purpose"
63
71
imply BOOTLOADER_MCUBOOT
64
- imply IMG_MANAGER
72
+ select IMG_MANAGER
73
+
74
+ config CHIP_BOOTLOADER_NONE
75
+ bool "No bootloader selected for Matter purposes"
76
+
77
+ endchoice
78
+
79
+ config CHIP_DFU_LIBRARY_MCUMGR
80
+ bool "Use mcumgr library for Matter DFU purposes"
81
+ # MCUBOOT
82
+ select MCUMGR_GRP_IMG if CHIP_BOOTLOADER_MCUBOOT
83
+ select MCUMGR_GRP_OS if CHIP_BOOTLOADER_MCUBOOT
84
+ # SUIT
85
+ select MGMT_SUITFU if CHIP_BOOTLOADER_SUIT
86
+ select MGMT_SUITFU_GRP_SUIT if CHIP_BOOTLOADER_SUIT
87
+ select MCUMGR_SMP_LEGACY_RC_BEHAVIOUR if CHIP_BOOTLOADER_SUIT
88
+ # COMMON
89
+ select MCUMGR
65
90
imply STREAM_FLASH
66
91
imply STREAM_FLASH_ERASE
67
92
93
+ config CHIP_DFU_LIBRARY_DFU_TARGET
94
+ bool "Use dfu target library for Matter DFU purposes"
95
+ # MCUBOOT
96
+ imply DFU_MULTI_IMAGE if CHIP_BOOTLOADER_MCUBOOT
97
+ # SUIT
98
+ imply DFU_TARGET_SUIT if CHIP_BOOTLOADER_SUIT
99
+ # COMMON
100
+ imply DFU_TARGET
101
+ imply STREAM_FLASH
102
+ imply STREAM_FLASH_ERASE
103
+ select ZCBOR
104
+ select ZCBOR_CANONICAL
105
+
106
+ # See config/zephyr/Kconfig for full definition
107
+ config CHIP_OTA_REQUESTOR
108
+ bool
109
+ select CHIP_DFU_LIBRARY_DFU_TARGET
110
+
68
111
config CHIP_OTA_REQUESTOR_BUFFER_SIZE
69
112
int "OTA Requestor image buffer size"
70
113
default 1024
0 commit comments