File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed
boards/riscv/esp32c3_devkitm Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change 88
88
#address-cells = <1>;
89
89
#size-cells = <1>;
90
90
91
- storage_partition: partition@9000 {
91
+ /* Reserve 60kB for the bootloader */
92
+ boot_partition: partition@0000 {
93
+ label = "mcuboot";
94
+ reg = <0x00000000 0x0000F000>;
95
+ read-only;
96
+ };
97
+
98
+ /* Reserve 1024kB for the application in slot 0 */
99
+ slot0_partition: partition@10000 {
100
+ label = "image-0";
101
+ reg = <0x00010000 0x00100000>;
102
+ };
103
+
104
+ /* Reserve 1024kB for the application in slot 1 */
105
+ slot1_partition: partition@110000 {
106
+ label = "image-1";
107
+ reg = <0x00110000 0x00100000>;
108
+ };
109
+
110
+ /* Reserve 256kB for the scratch partition */
111
+ scratch_partition: partition@210000 {
112
+ label = "image-scratch";
113
+ reg = <0x00210000 0x00040000>;
114
+ };
115
+
116
+ storage_partition: partition@250000 {
92
117
label = "storage";
93
- reg = <0x00009000 0x00006000>;
118
+ reg = <0x00250000 0x00006000>;
94
119
};
95
120
};
96
121
};
You can’t perform that action at this time.
0 commit comments