File tree Expand file tree Collapse file tree 6 files changed +360
-25
lines changed Expand file tree Collapse file tree 6 files changed +360
-25
lines changed Original file line number Diff line number Diff line change @@ -16,3 +16,5 @@ zephyr_library_link_libraries(suit_platform_interface)
1616zephyr_library_link_libraries(suit_memptr_storage_interface)
1717zephyr_library_link_libraries(suit_sink_selector_interface)
1818zephyr_library_link_libraries(suit_memory_layout_interface)
19+ zephyr_library_link_libraries(suit_storage_interface)
20+ zephyr_library_link_libraries(suit_manifest_variables)
Original file line number Diff line number Diff line change 1010 #address-cells = <1>;
1111 #size-cells = <1>;
1212
13- /* Use the last 8KB of NVM as dfu_partition. */
14- dfu_partition: partition@fe000 {
15- reg = <0xfe000 DT_SIZE_K(8)>;
13+ /* Use 8KB of NVM as dfu_partition. */
14+ dfu_partition: partition@f0000 {
15+ reg = <0xf0000 DT_SIZE_K(8)>;
16+ };
17+
18+ /* Use the last 48KB of NVM as suit storage. */
19+ suit_storage: partition@f4000 {
20+ reg = <0xf4000 DT_SIZE_K(48)>;
1621 };
1722 };
1823};
Original file line number Diff line number Diff line change 1010 #address-cells = <1>;
1111 #size-cells = <1>;
1212
13- /* Use the last 8KB of NVM as dfu_partition. */
14- dfu_partition: partition@fe000 {
15- reg = <0xfe000 DT_SIZE_K(8)>;
13+ /* Use 8KB of NVM as dfu_partition. */
14+ dfu_partition: partition@f0000 {
15+ reg = <0xf0000 DT_SIZE_K(8)>;
16+ };
17+
18+ /* Use the last 48KB of NVM as suit storage. */
19+ suit_storage: partition@f4000 {
20+ reg = <0xf4000 DT_SIZE_K(48)>;
1621 };
1722 };
1823};
Original file line number Diff line number Diff line change 1010 #address-cells = <1>;
1111 #size-cells = <1>;
1212
13- /* Use the last 8KB of NVM as dfu_partition. */
14- dfu_partition: partition@fe000 {
15- reg = <0xfe000 DT_SIZE_K(8)>;
13+ /* Use 8KB of NVM as dfu_partition. */
14+ dfu_partition: partition@f0000 {
15+ reg = <0xf0000 DT_SIZE_K(8)>;
16+ };
17+
18+ /* Use the last 48KB of NVM as suit storage. */
19+ suit_storage: partition@f4000 {
20+ reg = <0xf4000 DT_SIZE_K(48)>;
1621 };
1722 };
1823};
Original file line number Diff line number Diff line change @@ -20,6 +20,13 @@ CONFIG_SUIT_STREAM_SINK_MEMPTR=y
2020
2121CONFIG_SUIT_UTILS=y
2222CONFIG_SUIT_MEMPTR_STORAGE=y
23+ CONFIG_SUIT_MANIFEST_VARIABLES=y
24+ CONFIG_SUIT_AUTHENTICATE=y
25+ CONFIG_SUIT_CRYPTO=y
26+ CONFIG_SUIT_PLAT_CHECK_COMPONENT_COMPATIBILITY=y
27+ CONFIG_SUIT_MCI=y
28+ CONFIG_SUIT_EXECUTION_MODE=y
29+ CONFIG_SUIT_STORAGE=y
2330
2431CONFIG_ZCBOR=y
2532CONFIG_ZCBOR_CANONICAL=y
You can’t perform that action at this time.
0 commit comments