This renames the dtsi files in the dts/vendor/nordic to include the cpuapp in the filename. At the same time it updates the inclusion of these files to include the vendor in the path because the same filenames exists in both: dts/vendor/nordic dts/arm/nordic Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
34 lines
606 B
Plaintext
34 lines
606 B
Plaintext
/*
|
|
* 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)>;
|
|
};
|
|
};
|
|
};
|