@@ -55,16 +55,57 @@ 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
62
+
63
+ config CHIP_BOOTLOADER_SUIT
64
+ bool "SUIT for Matter purposes"
65
+ imply SUIT
66
+ imply SSF_SUIT_SERVICE_ENABLED
67
+
68
+ config CHIP_BOOTLOADER_MCUBOOT
69
+ bool "MCUBOOT for Matter Bootloader purpose"
63
70
imply BOOTLOADER_MCUBOOT
64
- imply IMG_MANAGER
71
+
72
+ config CHIP_BOOTLOADER_NONE
73
+ bool "No bootloader selected for Matter purposes"
74
+
75
+ endchoice
76
+
77
+ config CHIP_DFU_LIBRARY_MCUMGR
78
+ bool "Use mcumgr library for Matter DFU purposes"
79
+ # MCUBOOT
80
+ select MCUMGR_GRP_IMG if CHIP_BOOTLOADER_MCUBOOT
81
+ select IMG_MANAGER if CHIP_BOOTLOADER_MCUBOOT
82
+ select MCUMGR_GRP_OS if CHIP_BOOTLOADER_MCUBOOT
83
+ # SUIT
84
+ select MGMT_SUITFU if CHIP_BOOTLOADER_SUIT
85
+ select MGMT_SUITFU_GRP_SUIT if CHIP_BOOTLOADER_SUIT
86
+ select MCUMGR_SMP_LEGACY_RC_BEHAVIOUR if CHIP_BOOTLOADER_SUIT
87
+ # COMMON
65
88
imply STREAM_FLASH
66
89
imply STREAM_FLASH_ERASE
67
90
91
+ config CHIP_DFU_LIBRARY_DFU_TARGET
92
+ bool "Use dfu target library for Matter DFU purposes"
93
+ # MCUBOOT
94
+ imply DFU_MULTI_IMAGE if CHIP_BOOTLOADER_MCUBOOT
95
+ # SUIT
96
+ imply DFU_TARGET_SUIT if CHIP_BOOTLOADER_SUIT
97
+ # COMMON
98
+ imply DFU_TARGET
99
+ imply STREAM_FLASH
100
+ imply STREAM_FLASH_ERASE
101
+ select ZCBOR
102
+ select ZCBOR_CANONICAL
103
+
104
+ # See config/zephyr/Kconfig for full definition
105
+ config CHIP_OTA_REQUESTOR
106
+ bool
107
+ select CHIP_DFU_LIBRARY_DFU_TARGET
108
+
68
109
config CHIP_OTA_REQUESTOR_BUFFER_SIZE
69
110
int "OTA Requestor image buffer size"
70
111
default 1024
0 commit comments