Browse Source
Adds a common vendor dts file specifying the default partition layout for nRF54L15-based cpuapp board targets and updates boards to use this common file. This also drops the secure/non-secure split in the partitioning as this was reducing NVM storage that is not used by this board target and fixes the wrong flash field in twister yaml files Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>pull/90286/merge
13 changed files with 52 additions and 237 deletions
@ -0,0 +1,33 @@
@@ -0,0 +1,33 @@
|
||||
/* |
||||
* Copyright (c) 2025 Nordic Semiconductor ASA |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
&cpuapp_rram { |
||||
partitions { |
||||
compatible = "fixed-partitions"; |
||||
#address-cells = <1>; |
||||
#size-cells = <1>; |
||||
|
||||
boot_partition: partition@0 { |
||||
label = "mcuboot"; |
||||
reg = <0x0 DT_SIZE_K(64)>; |
||||
}; |
||||
|
||||
slot0_partition: partition@10000 { |
||||
label = "image-0"; |
||||
reg = <0x10000 DT_SIZE_K(664)>; |
||||
}; |
||||
|
||||
slot1_partition: partition@b6000 { |
||||
label = "image-1"; |
||||
reg = <0xb6000 DT_SIZE_K(664)>; |
||||
}; |
||||
|
||||
storage_partition: partition@15c000 { |
||||
label = "storage"; |
||||
reg = <0x15c000 DT_SIZE_K(36)>; |
||||
}; |
||||
}; |
||||
}; |
Loading…
Reference in new issue