Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

62 lines
1.2 KiB

/*
* Copyright (c) 2024-2025 Espressif Systems (Shanghai) Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
boot_partition: partition@1000 {
label = "mcuboot";
reg = <0x1000 DT_SIZE_K(60)>;
};
sys_partition: partition@10000 {
label = "sys";
reg = <0x10000 DT_SIZE_K(64)>;
};
slot0_partition: partition@20000 {
label = "image-0";
reg = <0x20000 DT_SIZE_K(1792)>;
};
slot1_partition: partition@1e0000 {
label = "image-1";
reg = <0x1E0000 DT_SIZE_K(1792)>;
};
slot0_lpcore_partition: partition@3a0000 {
label = "image-0-lpcore";
reg = <0x3A0000 DT_SIZE_K(32)>;
};
slot1_lpcore_partition: partition@3a8000 {
label = "image-1-lpcore";
reg = <0x3A8000 DT_SIZE_K(32)>;
};
storage_partition: partition@3b0000 {
label = "storage";
reg = <0x3B0000 DT_SIZE_K(192)>;
};
scratch_partition: partition@3e0000 {
label = "image-scratch";
reg = <0x3E0000 DT_SIZE_K(124)>;
};
coredump_partition: partition@3ff000 {
label = "coredump";
reg = <0x3FF000 DT_SIZE_K(4)>;
};
};
};
/* Remaining flash size is 0kB
* Last used address is 0x3FFFFF
*/