-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathnrf54l15dk_nrf54l15_cpuapp.overlay
More file actions
50 lines (43 loc) · 1.07 KB
/
nrf54l15dk_nrf54l15_cpuapp.overlay
File metadata and controls
50 lines (43 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Copyright (c) 2026 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
/delete-node/ &boot_partition;
/delete-node/ &slot0_partition;
/delete-node/ &slot1_partition;
/delete-node/ &storage_partition;
&cpuapp_rram {
partitions {
boot_partition: partition@0 {
compatible = "zephyr,mapped-partition";
label = "mcuboot";
reg = <0x0 0x8000>;
};
slot0_partition: partition@8000 {
compatible = "zephyr,mapped-partition";
label = "image-0";
reg = <0x8000 0x5a800>;
};
littlefs_storage: partition@62800 {
compatible = "zephyr,mapped-partition";
label = "littlefs-storage";
reg = <0x62800 0x6000>;
};
slot1_partition: partition@68800 {
compatible = "zephyr,mapped-partition";
label = "image-1";
reg = <0x68800 0x60800>;
};
storage_partition: partition@c9000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0xc9000 0x4000>;
};
unallocated: partition@cd000 {
compatible = "zephyr,mapped-partition";
label = "unallocated";
reg = <0xcd000 0xb0000>;
};
};
};